diff --git a/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2024/_06/plate_reader.py b/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2024/_06/plate_reader.py index 3f8f4a7297..a896314acc 100644 --- a/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2024/_06/plate_reader.py +++ b/src/allotropy/allotrope/schema_mappers/adm/plate_reader/rec/_2024/_06/plate_reader.py @@ -236,19 +236,24 @@ def _get_technique_document( ) -> PlateReaderDocumentItem: plate_reader_doc = PlateReaderDocumentItem( analyst=measurement_group.analyst, - measurement_aggregate_document=MeasurementAggregateDocument( - analytical_method_identifier=measurement_group.analytical_method_identifier, - experimental_data_identifier=measurement_group.experimental_data_identifier, - experiment_type=measurement_group.experiment_type, - container_type=ContainerType.well_plate.value, - plate_well_count=TQuantityValueNumber( - value=measurement_group.plate_well_count + measurement_aggregate_document=add_custom_information_document( + MeasurementAggregateDocument( + analytical_method_identifier=measurement_group.analytical_method_identifier, + experimental_data_identifier=measurement_group.experimental_data_identifier, + experiment_type=measurement_group.experiment_type, + container_type=ContainerType.well_plate.value, + plate_well_count=TQuantityValueNumber( + value=measurement_group.plate_well_count + ), + measurement_time=self.get_date_time( + measurement_group.measurement_time + ), + measurement_document=[ + self._get_measurement_document(measurement) + for measurement in measurement_group.measurements + ], ), - measurement_time=self.get_date_time(measurement_group.measurement_time), - measurement_document=[ - self._get_measurement_document(measurement) - for measurement in measurement_group.measurements - ], + measurement_group.custom_info, ), ) custom_info_doc = { @@ -256,7 +261,6 @@ def _get_technique_document( TQuantityValueNanometer, measurement_group.maximum_wavelength_signal ) } - custom_info_doc.update(measurement_group.custom_info or {}) return add_custom_information_document(plate_reader_doc, custom_info_doc) def _get_measurement_document( @@ -572,23 +576,26 @@ def _get_calculated_data_aggregate_document( return CalculatedDataAggregateDocument( calculated_data_document=[ - CalculatedDataDocumentItem( - calculated_data_identifier=calculated_data_item.uuid, - calculated_data_name=calculated_data_item.name, - calculation_description=calculated_data_item.description, - calculated_result=TQuantityValueModel( - value=calculated_data_item.value, - unit=calculated_data_item.unit or Unitless.unit, - ), - data_source_aggregate_document=DataSourceAggregateDocument( - data_source_document=[ - DataSourceDocumentItem( - data_source_identifier=item.reference.uuid, - data_source_feature=item.feature, - ) - for item in calculated_data_item.data_sources - ] + add_custom_information_document( + CalculatedDataDocumentItem( + calculated_data_identifier=calculated_data_item.uuid, + calculated_data_name=calculated_data_item.name, + calculation_description=calculated_data_item.description, + calculated_result=TQuantityValueModel( + value=calculated_data_item.value, + unit=calculated_data_item.unit or Unitless.unit, + ), + data_source_aggregate_document=DataSourceAggregateDocument( + data_source_document=[ + DataSourceDocumentItem( + data_source_identifier=item.reference.uuid, + data_source_feature=item.feature, + ) + for item in calculated_data_item.data_sources + ] + ), ), + calculated_data_item.custom_info, ) for calculated_data_item in calculated_data_items ] diff --git a/src/allotropy/parsers/perkin_elmer_envision/perkin_elmer_envision_structure.py b/src/allotropy/parsers/perkin_elmer_envision/perkin_elmer_envision_structure.py index fa4813a698..8fe9a60933 100644 --- a/src/allotropy/parsers/perkin_elmer_envision/perkin_elmer_envision_structure.py +++ b/src/allotropy/parsers/perkin_elmer_envision/perkin_elmer_envision_structure.py @@ -22,11 +22,16 @@ from enum import Enum from pathlib import Path from re import search +from typing import Any import numpy as np import pandas as pd from allotropy.allotrope.models.shared.components.plate_reader import SampleRoleType +from allotropy.allotrope.models.shared.definitions.custom import ( + TQuantityValueDegreeCelsius, + TQuantityValuePercent, +) from allotropy.allotrope.schema_mappers.adm.plate_reader.rec._2024._06.plate_reader import ( Measurement, MeasurementGroup, @@ -47,7 +52,9 @@ from allotropy.parsers.utils.values import ( assert_not_none, num_to_chars, + quantity_or_none, ) +from allotropy.parsers.utils.warnings_tools import suppress_unused_keys_warning class ReadType(Enum): @@ -104,6 +111,7 @@ def get_plate_number_and_barcode(data: SeriesData) -> tuple[str, str]: class CalculatedPlateInfo(PlateInfo): formula: str name: str + custom_info: dict[str, Any] | None = None @staticmethod def create(data: SeriesData) -> CalculatedPlateInfo: @@ -126,6 +134,7 @@ def create(data: SeriesData) -> CalculatedPlateInfo: ), formula=formula, name=name.strip(), + custom_info=data.get_unread(), ) @@ -134,6 +143,9 @@ class ResultPlateInfo(PlateInfo): label: str measinfo: str emission_filter_id: str + sample_custom_info: dict[str, Any] + device_control_custom_info: dict[str, Any] + custom_info: dict[str, Any] @staticmethod def create(data: SeriesData) -> ResultPlateInfo | None: @@ -159,6 +171,42 @@ def create(data: SeriesData) -> ResultPlateInfo | None: search("De=(...)", measinfo), msg=f"Unable to find emission filter ID for Plate {barcode}.", ).group(1), + device_control_custom_info={ + "Ambient temperature at start": quantity_or_none( + TQuantityValueDegreeCelsius, + data.get(float, "Ambient temperature at start"), + ), + "Ambient temperature at end": quantity_or_none( + TQuantityValueDegreeCelsius, + data.get(float, "Ambient temperature at end"), + ), + "Chamber temperature at end": quantity_or_none( + TQuantityValueDegreeCelsius, + data.get(float, "Chamber temperature at end"), + ), + "Humidity at start": quantity_or_none( + TQuantityValuePercent, data.get(float, "Humidity at start") + ), + "Humidity at end": quantity_or_none( + TQuantityValuePercent, data.get(float, "Humidity at end") + ), + "Kinetics": data.get(float, "Kinetics"), + "ScanX": data.get(float, "ScanX"), + "ScanY": data.get(float, "ScanY"), + "Inside temperature at start": quantity_or_none( + TQuantityValueDegreeCelsius, + data.get(float, "Inside temperature at start"), + ), + "Inside temperature at end": quantity_or_none( + TQuantityValueDegreeCelsius, + data.get(float, "Inside temperature at end"), + ), + }, + sample_custom_info={ + "group identifier": data.get(float, "Group"), + "Repeat": data.get(float, "Repeat"), + }, + custom_info=data.get_unread(), ) def match(self, background_info: BackgroundInfo) -> bool: @@ -176,6 +224,7 @@ class BackgroundInfo: plate_num: str label: str measinfo: str + custom_info: dict[str, Any] @staticmethod def create(data: SeriesData) -> BackgroundInfo: @@ -183,6 +232,7 @@ def create(data: SeriesData) -> BackgroundInfo: plate_num=data[str, "Plate"], label=data[str, "Label"], measinfo=data[str, "MeasInfo"], + custom_info=data.get_unread(), ) @@ -288,6 +338,7 @@ class ResultPlate(Plate): class CalculatedPlate(Plate): plate_info: CalculatedPlateInfo results: list[CalculatedResult] + custom_info: dict[str, Any] | None = None def get_source_results(self, plate_list: PlateList) -> Iterator[list[Result]]: if not self.background_infos: @@ -327,6 +378,7 @@ def create_plate(reader: CsvReader) -> ResultPlate | CalculatedPlate: plate_info=CalculatedPlateInfo.create(series), background_infos=create_background_infos(reader), results=create_calculated_results(reader), + custom_info=series.get_unread(), ) @@ -372,6 +424,7 @@ def get_measurement_time(self) -> str: class BasicAssayInfo: protocol_id: str | None assay_id: str | None + custom_info: dict[str, Any] @staticmethod def create(reader: CsvReader) -> BasicAssayInfo: @@ -384,12 +437,17 @@ def create(reader: CsvReader) -> BasicAssayInfo: data_frame.columns.astype(str).str.replace(":", "").str.strip() ) data = df_to_series_data(data_frame) - return BasicAssayInfo(data.get(str, "Protocol ID"), data.get(str, "Assay ID")) + return BasicAssayInfo( + data.get(str, "Protocol ID"), + data.get(str, "Assay ID"), + data.get_unread(skip={"Serial#"}), + ) @dataclass(frozen=True) class PlateType: number_of_wells: float + custom_info: dict[str, Any] @staticmethod def create(reader: CsvReader) -> PlateType: @@ -399,7 +457,8 @@ def create(reader: CsvReader) -> PlateType: ) data = df_to_series_data(data_frame.T) return PlateType( - number_of_wells=data[float, "Number of the wells in the plate"] + number_of_wells=data[float, "Number of the wells in the plate"], + custom_info=data.get_unread(), ) @@ -510,6 +569,7 @@ class Filter: bandwidth: float | None = None @staticmethod + @suppress_unused_keys_warning def create(reader: CsvReader) -> Filter | None: if not reader.current_line_exists() or reader.match( "(^Mirror modules)|(^Instrument:)|(^Aperture:)" @@ -569,6 +629,7 @@ class Labels: detector_gain_setting: str | None = None @staticmethod + @suppress_unused_keys_warning def create(reader: CsvReader) -> Labels: reader.drop_until_inclusive("^Labels") data_frame = assert_not_none( @@ -676,7 +737,7 @@ class Data: software: Software plate_list: PlateList basic_assay_info: BasicAssayInfo - number_of_wells: float + plate_type_info: PlateType plate_maps: dict[str, PlateMap] labels: Labels instrument: Instrument @@ -686,7 +747,7 @@ def create(reader: CsvReader) -> Data: return Data( plate_list=PlateList.create(reader), basic_assay_info=BasicAssayInfo.create(reader), - number_of_wells=PlateType.create(reader).number_of_wells, + plate_type_info=PlateType.create(reader), plate_maps=create_plate_maps(reader), labels=Labels.create(reader), instrument=Instrument.create(reader), @@ -714,14 +775,23 @@ def create_metadata( def _create_measurement( plate_info: ResultPlateInfo, result: Result, - plate_maps: dict[str, PlateMap], - labels: Labels, + data: Data, read_type: ReadType, ) -> Measurement: plate_barcode = plate_info.barcode well_location = f"{result.col}{result.row}" - ex_filter = labels.excitation_filter - em_filter = labels.get_emission_filter(plate_info.emission_filter_id) + ex_filter = data.labels.excitation_filter + em_filter = data.labels.get_emission_filter(plate_info.emission_filter_id) + sample_custom_info = { + **plate_info.sample_custom_info, + "Name of the plate type": data.plate_type_info.custom_info.pop( + "Name of the plate type", None + ), + } + device_control_custom_info = { + **plate_info.device_control_custom_info, + **data.plate_type_info.custom_info, + } return Measurement( type_=read_type.measurement_type, device_type=read_type.device_type, @@ -731,7 +801,7 @@ def _create_measurement( location_identifier=well_location, sample_role_type=( p_map.get_sample_role_type(result.col, result.row) - if (p_map := plate_maps.get(plate_info.number)) + if (p_map := data.plate_maps.get(plate_info.number)) else None ), compartment_temperature=plate_info.chamber_temperature_at_start, @@ -739,13 +809,16 @@ def _create_measurement( fluorescence=result.value if read_type is ReadType.FLUORESCENCE else None, luminescence=result.value if read_type is ReadType.LUMINESCENCE else None, detector_distance_setting=plate_info.measured_height, - number_of_averages=labels.number_of_flashes, - detector_gain_setting=labels.detector_gain_setting, - scan_position_setting=labels.scan_position_setting, + number_of_averages=data.labels.number_of_flashes, + detector_gain_setting=data.labels.detector_gain_setting, + scan_position_setting=data.labels.scan_position_setting, detector_wavelength_setting=em_filter.wavelength if em_filter else None, detector_bandwidth_setting=em_filter.bandwidth if em_filter else None, excitation_wavelength_setting=ex_filter.wavelength if ex_filter else None, excitation_bandwidth_setting=ex_filter.bandwidth if ex_filter else None, + device_control_custom_info=device_control_custom_info, + sample_custom_info=sample_custom_info, + measurement_custom_info=plate_info.custom_info, ) @@ -757,8 +830,7 @@ def create_measurement_groups(data: Data) -> list[MeasurementGroup]: measurement = _create_measurement( plate.plate_info, result, - data.plate_maps, - data.labels, + data, read_type, ) well_loc_measurements[ @@ -769,10 +841,11 @@ def create_measurement_groups(data: Data) -> list[MeasurementGroup]: return [ MeasurementGroup( measurement_time=measurement_time, - plate_well_count=data.number_of_wells, + plate_well_count=data.plate_type_info.number_of_wells, analytical_method_identifier=data.basic_assay_info.protocol_id, experimental_data_identifier=data.basic_assay_info.assay_id, measurements=well_loc_measurements[well_location], + custom_info=data.basic_assay_info.custom_info, ) for well_location in sorted( well_loc_measurements.keys(), diff --git a/src/allotropy/parsers/utils/calculated_data_documents/definition.py b/src/allotropy/parsers/utils/calculated_data_documents/definition.py index 34d67d5275..8dee36a9ce 100644 --- a/src/allotropy/parsers/utils/calculated_data_documents/definition.py +++ b/src/allotropy/parsers/utils/calculated_data_documents/definition.py @@ -2,6 +2,7 @@ from collections.abc import Iterator from dataclasses import dataclass +from typing import Any @dataclass @@ -24,6 +25,7 @@ class CalculatedDocument(Referenceable): unit: str | None = None description: str | None = None iterated: bool = False + custom_info: dict[str, Any] | None = None def iter_struct(self) -> Iterator[CalculatedDocument]: if self.iterated: diff --git a/tests/parsers/bmg_labtech_smart_control/testdata/fluorescence_endpoint_example2.json b/tests/parsers/bmg_labtech_smart_control/testdata/fluorescence_endpoint_example2.json index c0e97ca17a..6296b76299 100644 --- a/tests/parsers/bmg_labtech_smart_control/testdata/fluorescence_endpoint_example2.json +++ b/tests/parsers/bmg_labtech_smart_control/testdata/fluorescence_endpoint_example2.json @@ -48,8 +48,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -86,12 +86,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -139,8 +139,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -177,12 +177,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -230,8 +230,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -268,12 +268,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -321,8 +321,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -355,12 +355,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -408,8 +408,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -442,12 +442,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -495,8 +495,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -529,12 +529,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -582,8 +582,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -616,12 +616,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -669,8 +669,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -703,12 +703,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -756,8 +756,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -790,12 +790,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -843,8 +843,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -877,12 +877,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -930,8 +930,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -964,12 +964,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1017,8 +1017,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -1051,12 +1051,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1104,8 +1104,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -1142,12 +1142,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1195,8 +1195,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -1233,12 +1233,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1286,8 +1286,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -1324,12 +1324,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1377,8 +1377,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -1411,12 +1411,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1464,8 +1464,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -1498,12 +1498,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1551,8 +1551,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -1585,12 +1585,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1638,8 +1638,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -1672,12 +1672,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1725,8 +1725,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -1759,12 +1759,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1812,8 +1812,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -1846,12 +1846,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1899,8 +1899,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -1933,12 +1933,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1986,8 +1986,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2020,12 +2020,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2073,8 +2073,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2107,12 +2107,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2160,8 +2160,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2198,12 +2198,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2251,8 +2251,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2289,12 +2289,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2342,8 +2342,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2380,12 +2380,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2433,8 +2433,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2467,12 +2467,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2520,8 +2520,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2554,12 +2554,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2607,8 +2607,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2641,12 +2641,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2694,8 +2694,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2728,12 +2728,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2781,8 +2781,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2815,12 +2815,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2868,8 +2868,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2902,12 +2902,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2955,8 +2955,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -2989,12 +2989,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3042,8 +3042,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -3076,12 +3076,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3129,8 +3129,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -3163,12 +3163,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3216,8 +3216,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -3254,12 +3254,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3307,8 +3307,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -3345,12 +3345,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3398,8 +3398,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -3436,12 +3436,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3489,8 +3489,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -3523,12 +3523,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3576,8 +3576,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -3610,12 +3610,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3663,8 +3663,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -3697,12 +3697,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3750,8 +3750,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -3784,12 +3784,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3837,8 +3837,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -3871,12 +3871,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3924,8 +3924,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -3958,12 +3958,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4011,8 +4011,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -4045,12 +4045,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4098,8 +4098,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -4132,12 +4132,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4185,8 +4185,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -4219,12 +4219,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4272,8 +4272,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -4310,12 +4310,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4363,8 +4363,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -4401,12 +4401,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4454,8 +4454,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -4492,12 +4492,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4545,8 +4545,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -4579,12 +4579,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4632,8 +4632,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -4666,12 +4666,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4719,8 +4719,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -4753,12 +4753,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4806,8 +4806,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -4840,12 +4840,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4893,8 +4893,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -4927,12 +4927,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4980,8 +4980,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5014,12 +5014,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5067,8 +5067,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5101,12 +5101,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5154,8 +5154,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5188,12 +5188,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5241,8 +5241,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5275,12 +5275,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5328,8 +5328,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5366,12 +5366,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5419,8 +5419,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5457,12 +5457,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5510,8 +5510,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5548,12 +5548,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5601,8 +5601,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5635,12 +5635,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5688,8 +5688,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5722,12 +5722,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5775,8 +5775,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5809,12 +5809,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5862,8 +5862,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5896,12 +5896,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5949,8 +5949,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -5983,12 +5983,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6036,8 +6036,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -6070,12 +6070,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6123,8 +6123,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -6157,12 +6157,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6210,8 +6210,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -6244,12 +6244,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6297,8 +6297,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -6331,12 +6331,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6384,8 +6384,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -6422,12 +6422,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6475,8 +6475,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -6513,12 +6513,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6566,8 +6566,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -6604,12 +6604,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6657,8 +6657,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -6691,12 +6691,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6744,8 +6744,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -6778,12 +6778,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6831,8 +6831,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -6865,12 +6865,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6918,8 +6918,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -6952,12 +6952,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7005,8 +7005,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -7039,12 +7039,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7092,8 +7092,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -7126,12 +7126,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7179,8 +7179,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -7213,12 +7213,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7266,8 +7266,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -7300,12 +7300,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7353,8 +7353,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -7387,12 +7387,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7440,8 +7440,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -7478,12 +7478,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7531,8 +7531,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -7569,12 +7569,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7622,8 +7622,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -7660,12 +7660,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7713,8 +7713,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -7747,12 +7747,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7800,8 +7800,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -7834,12 +7834,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7887,8 +7887,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -7921,12 +7921,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -7974,8 +7974,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -8008,12 +8008,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -8061,8 +8061,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -8095,12 +8095,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -8148,8 +8148,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -8182,12 +8182,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -8235,8 +8235,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -8269,12 +8269,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -8322,8 +8322,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -8356,12 +8356,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -8409,8 +8409,8 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", + "Injection needle holder type": "-", "Target concentration CO2 [%]": "set off" } } @@ -8443,12 +8443,12 @@ }, "experimental data identifier": "PicoGreen NB-user-5097655-0069", "experiment type": "96 PicoGreen, Quant-iT", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 11.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 11.0 - } + "analyst": "user" } ], "calculated data aggregate document": { @@ -10345,7 +10345,7 @@ "file name": "fluorescence_endpoint_example2.xlsx", "UNC path": "tests/parsers/bmg_labtech_smart_control/testdata/fluorescence_endpoint_example2.xlsx", "ASM converter name": "allotropy_bmg_labtech_smart_control", - "ASM converter version": "0.1.76", + "ASM converter version": "0.1.105", "software name": "SMART Control", "custom information document": { "Path": "C:\\Program Files (x86)\\BMG\\SMART Control\\user\\Data" diff --git a/tests/parsers/bmg_labtech_smart_control/testdata/fluroescence_endpoint_example1.json b/tests/parsers/bmg_labtech_smart_control/testdata/fluroescence_endpoint_example1.json index a0b2e0ef0f..371f87172c 100644 --- a/tests/parsers/bmg_labtech_smart_control/testdata/fluroescence_endpoint_example1.json +++ b/tests/parsers/bmg_labtech_smart_control/testdata/fluroescence_endpoint_example1.json @@ -48,9 +48,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -86,12 +86,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -139,9 +139,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -177,12 +177,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -230,9 +230,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -268,12 +268,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -321,9 +321,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -355,12 +355,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -408,9 +408,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -442,12 +442,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -495,9 +495,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -529,12 +529,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -582,9 +582,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -616,12 +616,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -669,9 +669,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -703,12 +703,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -756,9 +756,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -790,12 +790,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -843,9 +843,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -881,12 +881,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -934,9 +934,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -972,12 +972,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1025,9 +1025,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -1063,12 +1063,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1116,9 +1116,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -1150,12 +1150,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1203,9 +1203,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -1237,12 +1237,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1290,9 +1290,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -1324,12 +1324,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1377,9 +1377,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -1411,12 +1411,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1464,9 +1464,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -1498,12 +1498,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1551,9 +1551,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -1585,12 +1585,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1638,9 +1638,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -1676,12 +1676,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1729,9 +1729,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -1767,12 +1767,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1820,9 +1820,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -1858,12 +1858,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1911,9 +1911,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -1945,12 +1945,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -1998,9 +1998,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -2032,12 +2032,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2085,9 +2085,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -2119,12 +2119,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2172,9 +2172,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -2206,12 +2206,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2259,9 +2259,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -2293,12 +2293,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2346,9 +2346,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -2380,12 +2380,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2433,9 +2433,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -2471,12 +2471,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2524,9 +2524,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -2562,12 +2562,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2615,9 +2615,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -2653,12 +2653,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2706,9 +2706,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -2740,12 +2740,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2793,9 +2793,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -2827,12 +2827,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2880,9 +2880,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -2914,12 +2914,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -2967,9 +2967,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3001,12 +3001,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3054,9 +3054,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3088,12 +3088,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3141,9 +3141,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3175,12 +3175,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3228,9 +3228,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3266,12 +3266,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3319,9 +3319,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3357,12 +3357,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3410,9 +3410,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3448,12 +3448,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3501,9 +3501,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3535,12 +3535,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3588,9 +3588,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3622,12 +3622,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3675,9 +3675,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3709,12 +3709,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3762,9 +3762,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3796,12 +3796,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3849,9 +3849,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3883,12 +3883,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -3936,9 +3936,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -3970,12 +3970,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4023,9 +4023,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -4061,12 +4061,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4114,9 +4114,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -4152,12 +4152,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4205,9 +4205,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -4243,12 +4243,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4296,9 +4296,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -4330,12 +4330,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4383,9 +4383,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -4417,12 +4417,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4470,9 +4470,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -4504,12 +4504,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4557,9 +4557,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -4591,12 +4591,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4644,9 +4644,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -4678,12 +4678,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4731,9 +4731,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -4765,12 +4765,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4818,9 +4818,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -4856,12 +4856,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -4909,9 +4909,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -4947,12 +4947,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5000,9 +5000,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -5038,12 +5038,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5091,9 +5091,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -5125,12 +5125,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5178,9 +5178,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -5212,12 +5212,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5265,9 +5265,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -5299,12 +5299,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5352,9 +5352,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -5386,12 +5386,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5439,9 +5439,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -5473,12 +5473,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5526,9 +5526,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -5560,12 +5560,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5613,9 +5613,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -5651,12 +5651,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5704,9 +5704,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -5742,12 +5742,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5795,9 +5795,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -5833,12 +5833,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5886,9 +5886,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -5920,12 +5920,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -5973,9 +5973,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -6007,12 +6007,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6060,9 +6060,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -6094,12 +6094,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6147,9 +6147,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -6181,12 +6181,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6234,9 +6234,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -6268,12 +6268,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6321,9 +6321,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -6355,12 +6355,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6408,9 +6408,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -6442,12 +6442,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6495,9 +6495,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -6529,12 +6529,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" }, { "measurement aggregate document": { @@ -6582,9 +6582,9 @@ "spoon type": "automatic", "well used for focus adjustment": "D8", "focal height obtained by": "previous focal height (obtained using auto focus)", - "Injection needle holder type": "-", "Target concentration O2 [%]": "set off", - "Target concentration CO2 [%]": "set off" + "Target concentration CO2 [%]": "set off", + "Injection needle holder type": "-" } } ] @@ -6616,12 +6616,12 @@ }, "experimental data identifier": "RiboGreen NB-user-5097655-0067", "experiment type": "Quant-iT_96 Pico/RiboGreen", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Test ID": 9.0 + } }, - "analyst": "user", - "custom information document": { - "Test ID": 9.0 - } + "analyst": "user" } ], "calculated data aggregate document": { @@ -8098,7 +8098,7 @@ "file name": "fluroescence_endpoint_example1.xlsx", "UNC path": "tests/parsers/bmg_labtech_smart_control/testdata/fluroescence_endpoint_example1.xlsx", "ASM converter name": "allotropy_bmg_labtech_smart_control", - "ASM converter version": "0.1.76", + "ASM converter version": "0.1.105", "software name": "SMART Control", "custom information document": { "Path": "C:\\Program Files (x86)\\BMG\\SMART Control\\user\\Data" diff --git a/tests/parsers/bmg_mars/testdata/16-02-29 14-34-46 Transcreener ADP2 FI.json b/tests/parsers/bmg_mars/testdata/16-02-29 14-34-46 Transcreener ADP2 FI.json index 65ec83e413..e96417091d 100644 --- a/tests/parsers/bmg_mars/testdata/16-02-29 14-34-46 Transcreener ADP2 FI.json +++ b/tests/parsers/bmg_mars/testdata/16-02-29 14-34-46 Transcreener ADP2 FI.json @@ -41,12 +41,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -87,12 +87,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -133,12 +133,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -179,12 +179,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -225,12 +225,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -271,12 +271,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -317,12 +317,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -363,12 +363,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -409,12 +409,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -455,12 +455,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -501,12 +501,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -547,12 +547,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -593,12 +593,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -639,12 +639,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -685,12 +685,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -731,12 +731,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -777,12 +777,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -823,12 +823,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -869,12 +869,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -915,12 +915,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -961,12 +961,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1007,12 +1007,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1053,12 +1053,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1099,12 +1099,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1145,12 +1145,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1191,12 +1191,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1237,12 +1237,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1283,12 +1283,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1329,12 +1329,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1375,12 +1375,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1421,12 +1421,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1467,12 +1467,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1513,12 +1513,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1559,12 +1559,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1605,12 +1605,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1651,12 +1651,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1697,12 +1697,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1743,12 +1743,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1789,12 +1789,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1835,12 +1835,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1881,12 +1881,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1927,12 +1927,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1973,12 +1973,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2019,12 +2019,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2065,12 +2065,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2111,12 +2111,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2157,12 +2157,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2203,12 +2203,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2249,12 +2249,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2295,12 +2295,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2341,12 +2341,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2387,12 +2387,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2433,12 +2433,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2479,12 +2479,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2525,12 +2525,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2571,12 +2571,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2617,12 +2617,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2663,12 +2663,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2709,12 +2709,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2755,12 +2755,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2801,12 +2801,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2847,12 +2847,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2893,12 +2893,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2939,12 +2939,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2985,12 +2985,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3031,12 +3031,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3077,12 +3077,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3123,12 +3123,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3169,12 +3169,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3215,12 +3215,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3261,12 +3261,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3307,12 +3307,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3353,12 +3353,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3399,12 +3399,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3445,12 +3445,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3491,12 +3491,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3537,12 +3537,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3583,12 +3583,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3629,12 +3629,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3675,12 +3675,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3721,12 +3721,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3767,12 +3767,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3813,12 +3813,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3859,12 +3859,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3905,12 +3905,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3951,12 +3951,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3997,12 +3997,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4043,12 +4043,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4089,12 +4089,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4135,12 +4135,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4181,12 +4181,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4227,12 +4227,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4273,12 +4273,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4319,12 +4319,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4365,12 +4365,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4411,12 +4411,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4457,12 +4457,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4503,12 +4503,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4549,12 +4549,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4595,12 +4595,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4641,12 +4641,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4687,12 +4687,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4733,12 +4733,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4779,12 +4779,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4825,12 +4825,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4871,12 +4871,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4917,12 +4917,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4963,12 +4963,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5009,12 +5009,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5055,12 +5055,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5101,12 +5101,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5147,12 +5147,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5193,12 +5193,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5239,12 +5239,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5285,12 +5285,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5331,12 +5331,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5377,12 +5377,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5423,12 +5423,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5469,12 +5469,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5515,12 +5515,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5561,12 +5561,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5607,12 +5607,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5653,12 +5653,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5699,12 +5699,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5745,12 +5745,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5791,12 +5791,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5837,12 +5837,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5883,12 +5883,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5929,12 +5929,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5975,12 +5975,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6021,12 +6021,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6067,12 +6067,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6113,12 +6113,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6159,12 +6159,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6205,12 +6205,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6251,12 +6251,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6297,12 +6297,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6343,12 +6343,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6389,12 +6389,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6435,12 +6435,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6481,12 +6481,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6527,12 +6527,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6573,12 +6573,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6619,12 +6619,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6665,12 +6665,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6711,12 +6711,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6757,12 +6757,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6803,12 +6803,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6849,12 +6849,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6895,12 +6895,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6941,12 +6941,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6987,12 +6987,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7033,12 +7033,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7079,12 +7079,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7125,12 +7125,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7171,12 +7171,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7217,12 +7217,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7263,12 +7263,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7309,12 +7309,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7355,12 +7355,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7401,12 +7401,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7447,12 +7447,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7493,12 +7493,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7539,12 +7539,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7585,12 +7585,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7631,12 +7631,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7677,12 +7677,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7723,12 +7723,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7769,12 +7769,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7815,12 +7815,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7861,12 +7861,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7907,12 +7907,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7953,12 +7953,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7999,12 +7999,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8045,12 +8045,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8091,12 +8091,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8137,12 +8137,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8183,12 +8183,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8229,12 +8229,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8275,12 +8275,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8321,12 +8321,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8367,12 +8367,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8413,12 +8413,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8459,12 +8459,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8505,12 +8505,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8551,12 +8551,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8597,12 +8597,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8643,12 +8643,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8689,12 +8689,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8735,12 +8735,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8781,12 +8781,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8827,12 +8827,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8873,12 +8873,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8919,12 +8919,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8965,12 +8965,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9011,12 +9011,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9057,12 +9057,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9103,12 +9103,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9149,12 +9149,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9195,12 +9195,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9241,12 +9241,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9287,12 +9287,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9333,12 +9333,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9379,12 +9379,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9425,12 +9425,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9471,12 +9471,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9517,12 +9517,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9563,12 +9563,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9609,12 +9609,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9655,12 +9655,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9701,12 +9701,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9747,12 +9747,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9793,12 +9793,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9839,12 +9839,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9885,12 +9885,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9931,12 +9931,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9977,12 +9977,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10023,12 +10023,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10069,12 +10069,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10115,12 +10115,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10161,12 +10161,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10207,12 +10207,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10253,12 +10253,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10299,12 +10299,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10345,12 +10345,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10391,12 +10391,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10437,12 +10437,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10483,12 +10483,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10529,12 +10529,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10575,12 +10575,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10621,12 +10621,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10667,12 +10667,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10713,12 +10713,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10759,12 +10759,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10805,12 +10805,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10851,12 +10851,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10897,12 +10897,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10943,12 +10943,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10989,12 +10989,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11035,12 +11035,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11081,12 +11081,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11127,12 +11127,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11173,12 +11173,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11219,12 +11219,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11265,12 +11265,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11311,12 +11311,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11357,12 +11357,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11403,12 +11403,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11449,12 +11449,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11495,12 +11495,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11541,12 +11541,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11587,12 +11587,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11633,12 +11633,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11679,12 +11679,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11725,12 +11725,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11771,12 +11771,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11817,12 +11817,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11863,12 +11863,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11909,12 +11909,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11955,12 +11955,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12001,12 +12001,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12047,12 +12047,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12093,12 +12093,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12139,12 +12139,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12185,12 +12185,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12231,12 +12231,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12277,12 +12277,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12323,12 +12323,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12369,12 +12369,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12415,12 +12415,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12461,12 +12461,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12507,12 +12507,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12553,12 +12553,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12599,12 +12599,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12645,12 +12645,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12691,12 +12691,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12737,12 +12737,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12783,12 +12783,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12829,12 +12829,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12875,12 +12875,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12921,12 +12921,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12967,12 +12967,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13013,12 +13013,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13059,12 +13059,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13105,12 +13105,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13151,12 +13151,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13197,12 +13197,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13243,12 +13243,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13289,12 +13289,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13335,12 +13335,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13381,12 +13381,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13427,12 +13427,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13473,12 +13473,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13519,12 +13519,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13565,12 +13565,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13611,12 +13611,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13657,12 +13657,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13703,12 +13703,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13749,12 +13749,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13795,12 +13795,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13841,12 +13841,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13887,12 +13887,12 @@ }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 4.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 4.0 - } + "analyst": "USER" } ], "data system document": { diff --git a/tests/parsers/bmg_mars/testdata/16-03-03 13-25-45 472 QC 384 FI.json b/tests/parsers/bmg_mars/testdata/16-03-03 13-25-45 472 QC 384 FI.json index 30fd84631f..2ed35de366 100644 --- a/tests/parsers/bmg_mars/testdata/16-03-03 13-25-45 472 QC 384 FI.json +++ b/tests/parsers/bmg_mars/testdata/16-03-03 13-25-45 472 QC 384 FI.json @@ -40,12 +40,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -85,12 +85,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -130,12 +130,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -175,12 +175,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -220,12 +220,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -265,12 +265,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -310,12 +310,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -355,12 +355,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -400,12 +400,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -445,12 +445,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -490,12 +490,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -535,12 +535,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -580,12 +580,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -625,12 +625,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -670,12 +670,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -715,12 +715,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -760,12 +760,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -805,12 +805,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -850,12 +850,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -895,12 +895,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -940,12 +940,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -985,12 +985,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1030,12 +1030,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1075,12 +1075,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1120,12 +1120,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1165,12 +1165,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1210,12 +1210,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1255,12 +1255,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1300,12 +1300,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1345,12 +1345,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1390,12 +1390,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1435,12 +1435,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1480,12 +1480,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1525,12 +1525,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1570,12 +1570,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1615,12 +1615,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1660,12 +1660,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1705,12 +1705,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1750,12 +1750,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1795,12 +1795,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1840,12 +1840,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1885,12 +1885,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1930,12 +1930,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1975,12 +1975,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2020,12 +2020,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2065,12 +2065,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2110,12 +2110,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2155,12 +2155,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2200,12 +2200,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2245,12 +2245,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2290,12 +2290,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2335,12 +2335,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2380,12 +2380,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2425,12 +2425,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2470,12 +2470,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2515,12 +2515,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2560,12 +2560,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2605,12 +2605,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2650,12 +2650,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2695,12 +2695,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2740,12 +2740,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2785,12 +2785,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2830,12 +2830,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2875,12 +2875,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2920,12 +2920,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2965,12 +2965,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3010,12 +3010,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3055,12 +3055,12 @@ "unit": "#" }, "experiment type": "472 QC 384 FI", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 1.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 1.0 - } + "analyst": "USER" } ], "data system document": { diff --git a/tests/parsers/bmg_mars/testdata/16-03-03 16-54-03 472 ABS 384 QC.json b/tests/parsers/bmg_mars/testdata/16-03-03 16-54-03 472 ABS 384 QC.json index 3a6d354da2..47e71cb2ca 100644 --- a/tests/parsers/bmg_mars/testdata/16-03-03 16-54-03 472 ABS 384 QC.json +++ b/tests/parsers/bmg_mars/testdata/16-03-03 16-54-03 472 ABS 384 QC.json @@ -36,12 +36,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -77,12 +77,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -118,12 +118,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -159,12 +159,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -200,12 +200,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -241,12 +241,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -282,12 +282,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -323,12 +323,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -364,12 +364,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -405,12 +405,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -446,12 +446,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -487,12 +487,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -528,12 +528,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -569,12 +569,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -610,12 +610,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -651,12 +651,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -692,12 +692,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -733,12 +733,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -774,12 +774,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -815,12 +815,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -856,12 +856,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -897,12 +897,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -938,12 +938,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -979,12 +979,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1020,12 +1020,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1061,12 +1061,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1102,12 +1102,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1143,12 +1143,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1184,12 +1184,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1225,12 +1225,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1266,12 +1266,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1307,12 +1307,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1348,12 +1348,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1389,12 +1389,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1430,12 +1430,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1471,12 +1471,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1512,12 +1512,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1553,12 +1553,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1594,12 +1594,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1635,12 +1635,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1676,12 +1676,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1717,12 +1717,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1758,12 +1758,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1799,12 +1799,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1840,12 +1840,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1881,12 +1881,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1922,12 +1922,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1963,12 +1963,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2004,12 +2004,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2045,12 +2045,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2086,12 +2086,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2127,12 +2127,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2168,12 +2168,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2209,12 +2209,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2250,12 +2250,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2291,12 +2291,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2332,12 +2332,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2373,12 +2373,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2414,12 +2414,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2455,12 +2455,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2496,12 +2496,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2537,12 +2537,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2578,12 +2578,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2619,12 +2619,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2660,12 +2660,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2701,12 +2701,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2742,12 +2742,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2783,12 +2783,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2824,12 +2824,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2865,12 +2865,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2906,12 +2906,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2947,12 +2947,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2988,12 +2988,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3029,12 +3029,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3070,12 +3070,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3111,12 +3111,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3152,12 +3152,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3193,12 +3193,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3234,12 +3234,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3275,12 +3275,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3316,12 +3316,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3357,12 +3357,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3398,12 +3398,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3439,12 +3439,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3480,12 +3480,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3521,12 +3521,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3562,12 +3562,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3603,12 +3603,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3644,12 +3644,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3685,12 +3685,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3726,12 +3726,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3767,12 +3767,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3808,12 +3808,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3849,12 +3849,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3890,12 +3890,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3931,12 +3931,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3972,12 +3972,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4013,12 +4013,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4054,12 +4054,12 @@ "unit": "#" }, "experiment type": "472 ABS 384 QC", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 3.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 3.0 - } + "analyst": "USER" } ], "data system document": { diff --git a/tests/parsers/bmg_mars/testdata/24-10-16 15-09-52 Luminescence 1536.json b/tests/parsers/bmg_mars/testdata/24-10-16 15-09-52 Luminescence 1536.json index b463888a1c..0e1fe5c7a3 100644 --- a/tests/parsers/bmg_mars/testdata/24-10-16 15-09-52 Luminescence 1536.json +++ b/tests/parsers/bmg_mars/testdata/24-10-16 15-09-52 Luminescence 1536.json @@ -32,12 +32,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -69,12 +69,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -106,12 +106,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -143,12 +143,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -180,12 +180,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -217,12 +217,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -254,12 +254,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -291,12 +291,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -328,12 +328,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -365,12 +365,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -402,12 +402,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -439,12 +439,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -476,12 +476,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -513,12 +513,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -550,12 +550,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -587,12 +587,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -624,12 +624,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -661,12 +661,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -698,12 +698,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -735,12 +735,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -772,12 +772,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -809,12 +809,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -846,12 +846,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -883,12 +883,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -920,12 +920,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -957,12 +957,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -994,12 +994,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1031,12 +1031,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1068,12 +1068,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1105,12 +1105,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1142,12 +1142,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1179,12 +1179,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1216,12 +1216,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1253,12 +1253,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1290,12 +1290,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1327,12 +1327,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1364,12 +1364,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1401,12 +1401,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1438,12 +1438,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1475,12 +1475,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1512,12 +1512,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1549,12 +1549,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1586,12 +1586,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1623,12 +1623,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1660,12 +1660,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1697,12 +1697,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1734,12 +1734,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1771,12 +1771,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1808,12 +1808,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1845,12 +1845,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1882,12 +1882,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1919,12 +1919,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1956,12 +1956,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -1993,12 +1993,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2030,12 +2030,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2067,12 +2067,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2104,12 +2104,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2141,12 +2141,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2178,12 +2178,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2215,12 +2215,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2252,12 +2252,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2289,12 +2289,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2326,12 +2326,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2363,12 +2363,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2400,12 +2400,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2437,12 +2437,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2474,12 +2474,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2511,12 +2511,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2548,12 +2548,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2585,12 +2585,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2622,12 +2622,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2659,12 +2659,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2696,12 +2696,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2733,12 +2733,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2770,12 +2770,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2807,12 +2807,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2844,12 +2844,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2881,12 +2881,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2918,12 +2918,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2955,12 +2955,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -2992,12 +2992,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3029,12 +3029,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3066,12 +3066,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3103,12 +3103,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3140,12 +3140,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3177,12 +3177,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3214,12 +3214,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3251,12 +3251,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3288,12 +3288,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3325,12 +3325,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3362,12 +3362,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3399,12 +3399,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3436,12 +3436,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3473,12 +3473,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3510,12 +3510,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3547,12 +3547,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3584,12 +3584,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3621,12 +3621,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3658,12 +3658,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3695,12 +3695,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3732,12 +3732,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3769,12 +3769,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3806,12 +3806,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3843,12 +3843,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3880,12 +3880,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3917,12 +3917,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3954,12 +3954,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -3991,12 +3991,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4028,12 +4028,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4065,12 +4065,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4102,12 +4102,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4139,12 +4139,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4176,12 +4176,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4213,12 +4213,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4250,12 +4250,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4287,12 +4287,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4324,12 +4324,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4361,12 +4361,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4398,12 +4398,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4435,12 +4435,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4472,12 +4472,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4509,12 +4509,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4546,12 +4546,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4583,12 +4583,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4620,12 +4620,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4657,12 +4657,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4694,12 +4694,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4731,12 +4731,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4768,12 +4768,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4805,12 +4805,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4842,12 +4842,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4879,12 +4879,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4916,12 +4916,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4953,12 +4953,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -4990,12 +4990,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5027,12 +5027,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5064,12 +5064,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5101,12 +5101,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5138,12 +5138,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5175,12 +5175,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5212,12 +5212,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5249,12 +5249,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5286,12 +5286,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5323,12 +5323,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5360,12 +5360,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5397,12 +5397,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5434,12 +5434,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5471,12 +5471,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5508,12 +5508,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5545,12 +5545,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5582,12 +5582,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5619,12 +5619,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5656,12 +5656,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5693,12 +5693,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5730,12 +5730,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5767,12 +5767,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5804,12 +5804,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5841,12 +5841,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5878,12 +5878,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5915,12 +5915,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5952,12 +5952,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -5989,12 +5989,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6026,12 +6026,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6063,12 +6063,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6100,12 +6100,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6137,12 +6137,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6174,12 +6174,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6211,12 +6211,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6248,12 +6248,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6285,12 +6285,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6322,12 +6322,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6359,12 +6359,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6396,12 +6396,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6433,12 +6433,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6470,12 +6470,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6507,12 +6507,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6544,12 +6544,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6581,12 +6581,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6618,12 +6618,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6655,12 +6655,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6692,12 +6692,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6729,12 +6729,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6766,12 +6766,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6803,12 +6803,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6840,12 +6840,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6877,12 +6877,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6914,12 +6914,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6951,12 +6951,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -6988,12 +6988,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7025,12 +7025,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7062,12 +7062,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7099,12 +7099,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7136,12 +7136,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7173,12 +7173,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7210,12 +7210,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7247,12 +7247,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7284,12 +7284,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7321,12 +7321,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7358,12 +7358,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7395,12 +7395,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7432,12 +7432,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7469,12 +7469,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7506,12 +7506,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7543,12 +7543,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7580,12 +7580,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7617,12 +7617,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7654,12 +7654,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7691,12 +7691,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7728,12 +7728,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7765,12 +7765,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7802,12 +7802,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7839,12 +7839,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7876,12 +7876,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7913,12 +7913,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7950,12 +7950,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -7987,12 +7987,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8024,12 +8024,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8061,12 +8061,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8098,12 +8098,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8135,12 +8135,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8172,12 +8172,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8209,12 +8209,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8246,12 +8246,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8283,12 +8283,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8320,12 +8320,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8357,12 +8357,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8394,12 +8394,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8431,12 +8431,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8468,12 +8468,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8505,12 +8505,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8542,12 +8542,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8579,12 +8579,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8616,12 +8616,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8653,12 +8653,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8690,12 +8690,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8727,12 +8727,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8764,12 +8764,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8801,12 +8801,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8838,12 +8838,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8875,12 +8875,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8912,12 +8912,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8949,12 +8949,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -8986,12 +8986,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9023,12 +9023,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9060,12 +9060,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9097,12 +9097,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9134,12 +9134,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9171,12 +9171,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9208,12 +9208,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9245,12 +9245,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9282,12 +9282,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9319,12 +9319,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9356,12 +9356,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9393,12 +9393,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9430,12 +9430,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9467,12 +9467,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9504,12 +9504,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9541,12 +9541,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9578,12 +9578,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9615,12 +9615,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9652,12 +9652,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9689,12 +9689,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9726,12 +9726,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9763,12 +9763,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9800,12 +9800,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9837,12 +9837,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9874,12 +9874,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9911,12 +9911,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9948,12 +9948,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -9985,12 +9985,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10022,12 +10022,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10059,12 +10059,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10096,12 +10096,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10133,12 +10133,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10170,12 +10170,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10207,12 +10207,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10244,12 +10244,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10281,12 +10281,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10318,12 +10318,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10355,12 +10355,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10392,12 +10392,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10429,12 +10429,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10466,12 +10466,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10503,12 +10503,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10540,12 +10540,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10577,12 +10577,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10614,12 +10614,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10651,12 +10651,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10688,12 +10688,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10725,12 +10725,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10762,12 +10762,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10799,12 +10799,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10836,12 +10836,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10873,12 +10873,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10910,12 +10910,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10947,12 +10947,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -10984,12 +10984,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11021,12 +11021,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11058,12 +11058,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11095,12 +11095,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11132,12 +11132,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11169,12 +11169,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11206,12 +11206,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11243,12 +11243,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11280,12 +11280,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11317,12 +11317,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11354,12 +11354,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11391,12 +11391,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11428,12 +11428,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11465,12 +11465,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11502,12 +11502,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11539,12 +11539,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11576,12 +11576,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11613,12 +11613,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11650,12 +11650,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11687,12 +11687,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11724,12 +11724,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11761,12 +11761,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11798,12 +11798,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11835,12 +11835,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11872,12 +11872,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11909,12 +11909,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11946,12 +11946,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -11983,12 +11983,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12020,12 +12020,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12057,12 +12057,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12094,12 +12094,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12131,12 +12131,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12168,12 +12168,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12205,12 +12205,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12242,12 +12242,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12279,12 +12279,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12316,12 +12316,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12353,12 +12353,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12390,12 +12390,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12427,12 +12427,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12464,12 +12464,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12501,12 +12501,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12538,12 +12538,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12575,12 +12575,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12612,12 +12612,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12649,12 +12649,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12686,12 +12686,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12723,12 +12723,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12760,12 +12760,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12797,12 +12797,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12834,12 +12834,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12871,12 +12871,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12908,12 +12908,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12945,12 +12945,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -12982,12 +12982,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13019,12 +13019,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13056,12 +13056,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13093,12 +13093,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13130,12 +13130,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13167,12 +13167,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13204,12 +13204,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13241,12 +13241,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13278,12 +13278,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13315,12 +13315,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13352,12 +13352,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13389,12 +13389,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13426,12 +13426,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13463,12 +13463,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13500,12 +13500,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13537,12 +13537,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13574,12 +13574,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13611,12 +13611,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13648,12 +13648,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13685,12 +13685,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13722,12 +13722,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13759,12 +13759,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13796,12 +13796,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13833,12 +13833,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13870,12 +13870,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13907,12 +13907,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13944,12 +13944,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -13981,12 +13981,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14018,12 +14018,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14055,12 +14055,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14092,12 +14092,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14129,12 +14129,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14166,12 +14166,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14203,12 +14203,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14240,12 +14240,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14277,12 +14277,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14314,12 +14314,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14351,12 +14351,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14388,12 +14388,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14425,12 +14425,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14462,12 +14462,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14499,12 +14499,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14536,12 +14536,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14573,12 +14573,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14610,12 +14610,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14647,12 +14647,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14684,12 +14684,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14721,12 +14721,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14758,12 +14758,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14795,12 +14795,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14832,12 +14832,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14869,12 +14869,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14906,12 +14906,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14943,12 +14943,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -14980,12 +14980,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15017,12 +15017,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15054,12 +15054,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15091,12 +15091,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15128,12 +15128,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15165,12 +15165,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15202,12 +15202,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15239,12 +15239,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15276,12 +15276,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15313,12 +15313,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15350,12 +15350,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15387,12 +15387,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15424,12 +15424,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15461,12 +15461,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15498,12 +15498,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15535,12 +15535,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15572,12 +15572,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15609,12 +15609,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15646,12 +15646,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15683,12 +15683,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15720,12 +15720,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15757,12 +15757,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15794,12 +15794,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15831,12 +15831,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15868,12 +15868,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15905,12 +15905,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15942,12 +15942,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -15979,12 +15979,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16016,12 +16016,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16053,12 +16053,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16090,12 +16090,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16127,12 +16127,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16164,12 +16164,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16201,12 +16201,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16238,12 +16238,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16275,12 +16275,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16312,12 +16312,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16349,12 +16349,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16386,12 +16386,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16423,12 +16423,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16460,12 +16460,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16497,12 +16497,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16534,12 +16534,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16571,12 +16571,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16608,12 +16608,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16645,12 +16645,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16682,12 +16682,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16719,12 +16719,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16756,12 +16756,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16793,12 +16793,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16830,12 +16830,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16867,12 +16867,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16904,12 +16904,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16941,12 +16941,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -16978,12 +16978,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17015,12 +17015,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17052,12 +17052,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17089,12 +17089,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17126,12 +17126,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17163,12 +17163,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17200,12 +17200,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17237,12 +17237,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17274,12 +17274,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17311,12 +17311,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17348,12 +17348,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17385,12 +17385,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17422,12 +17422,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17459,12 +17459,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17496,12 +17496,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17533,12 +17533,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17570,12 +17570,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17607,12 +17607,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17644,12 +17644,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17681,12 +17681,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17718,12 +17718,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17755,12 +17755,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17792,12 +17792,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17829,12 +17829,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17866,12 +17866,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17903,12 +17903,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17940,12 +17940,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -17977,12 +17977,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18014,12 +18014,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18051,12 +18051,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18088,12 +18088,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18125,12 +18125,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18162,12 +18162,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18199,12 +18199,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18236,12 +18236,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18273,12 +18273,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18310,12 +18310,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18347,12 +18347,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18384,12 +18384,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18421,12 +18421,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18458,12 +18458,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18495,12 +18495,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18532,12 +18532,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18569,12 +18569,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18606,12 +18606,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18643,12 +18643,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18680,12 +18680,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18717,12 +18717,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18754,12 +18754,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18791,12 +18791,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18828,12 +18828,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18865,12 +18865,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18902,12 +18902,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18939,12 +18939,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -18976,12 +18976,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19013,12 +19013,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19050,12 +19050,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19087,12 +19087,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19124,12 +19124,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19161,12 +19161,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19198,12 +19198,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19235,12 +19235,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19272,12 +19272,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19309,12 +19309,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19346,12 +19346,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19383,12 +19383,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19420,12 +19420,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19457,12 +19457,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19494,12 +19494,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19531,12 +19531,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19568,12 +19568,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19605,12 +19605,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19642,12 +19642,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19679,12 +19679,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19716,12 +19716,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19753,12 +19753,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19790,12 +19790,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19827,12 +19827,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19864,12 +19864,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19901,12 +19901,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19938,12 +19938,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -19975,12 +19975,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20012,12 +20012,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20049,12 +20049,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20086,12 +20086,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20123,12 +20123,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20160,12 +20160,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20197,12 +20197,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20234,12 +20234,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20271,12 +20271,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20308,12 +20308,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20345,12 +20345,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20382,12 +20382,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20419,12 +20419,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20456,12 +20456,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20493,12 +20493,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20530,12 +20530,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20567,12 +20567,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20604,12 +20604,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20641,12 +20641,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20678,12 +20678,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20715,12 +20715,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20752,12 +20752,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20789,12 +20789,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20826,12 +20826,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20863,12 +20863,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20900,12 +20900,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20937,12 +20937,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -20974,12 +20974,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21011,12 +21011,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21048,12 +21048,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21085,12 +21085,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21122,12 +21122,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21159,12 +21159,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21196,12 +21196,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21233,12 +21233,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21270,12 +21270,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21307,12 +21307,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21344,12 +21344,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21381,12 +21381,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21418,12 +21418,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21455,12 +21455,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21492,12 +21492,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21529,12 +21529,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21566,12 +21566,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21603,12 +21603,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21640,12 +21640,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21677,12 +21677,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21714,12 +21714,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21751,12 +21751,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21788,12 +21788,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21825,12 +21825,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21862,12 +21862,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21899,12 +21899,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21936,12 +21936,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -21973,12 +21973,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22010,12 +22010,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22047,12 +22047,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22084,12 +22084,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22121,12 +22121,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22158,12 +22158,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22195,12 +22195,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22232,12 +22232,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22269,12 +22269,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22306,12 +22306,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22343,12 +22343,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22380,12 +22380,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22417,12 +22417,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22454,12 +22454,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22491,12 +22491,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22528,12 +22528,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22565,12 +22565,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22602,12 +22602,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22639,12 +22639,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22676,12 +22676,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22713,12 +22713,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22750,12 +22750,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22787,12 +22787,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22824,12 +22824,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22861,12 +22861,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22898,12 +22898,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22935,12 +22935,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -22972,12 +22972,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23009,12 +23009,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23046,12 +23046,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23083,12 +23083,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23120,12 +23120,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23157,12 +23157,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23194,12 +23194,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23231,12 +23231,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23268,12 +23268,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23305,12 +23305,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23342,12 +23342,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23379,12 +23379,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23416,12 +23416,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23453,12 +23453,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23490,12 +23490,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23527,12 +23527,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23564,12 +23564,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23601,12 +23601,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23638,12 +23638,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23675,12 +23675,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23712,12 +23712,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23749,12 +23749,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23786,12 +23786,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23823,12 +23823,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23860,12 +23860,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23897,12 +23897,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23934,12 +23934,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -23971,12 +23971,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24008,12 +24008,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24045,12 +24045,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24082,12 +24082,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24119,12 +24119,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24156,12 +24156,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24193,12 +24193,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24230,12 +24230,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24267,12 +24267,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24304,12 +24304,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24341,12 +24341,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24378,12 +24378,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24415,12 +24415,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24452,12 +24452,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24489,12 +24489,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24526,12 +24526,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24563,12 +24563,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24600,12 +24600,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24637,12 +24637,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24674,12 +24674,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24711,12 +24711,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24748,12 +24748,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24785,12 +24785,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24822,12 +24822,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24859,12 +24859,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24896,12 +24896,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24933,12 +24933,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -24970,12 +24970,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25007,12 +25007,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25044,12 +25044,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25081,12 +25081,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25118,12 +25118,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25155,12 +25155,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25192,12 +25192,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25229,12 +25229,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25266,12 +25266,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25303,12 +25303,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25340,12 +25340,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25377,12 +25377,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25414,12 +25414,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25451,12 +25451,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25488,12 +25488,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25525,12 +25525,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25562,12 +25562,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25599,12 +25599,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25636,12 +25636,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25673,12 +25673,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25710,12 +25710,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25747,12 +25747,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25784,12 +25784,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25821,12 +25821,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25858,12 +25858,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25895,12 +25895,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25932,12 +25932,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -25969,12 +25969,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26006,12 +26006,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26043,12 +26043,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26080,12 +26080,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26117,12 +26117,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26154,12 +26154,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26191,12 +26191,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26228,12 +26228,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26265,12 +26265,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26302,12 +26302,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26339,12 +26339,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26376,12 +26376,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26413,12 +26413,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26450,12 +26450,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26487,12 +26487,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26524,12 +26524,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26561,12 +26561,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26598,12 +26598,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26635,12 +26635,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26672,12 +26672,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26709,12 +26709,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26746,12 +26746,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26783,12 +26783,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26820,12 +26820,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26857,12 +26857,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26894,12 +26894,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26931,12 +26931,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -26968,12 +26968,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27005,12 +27005,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27042,12 +27042,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27079,12 +27079,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27116,12 +27116,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27153,12 +27153,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27190,12 +27190,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27227,12 +27227,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27264,12 +27264,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27301,12 +27301,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27338,12 +27338,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27375,12 +27375,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27412,12 +27412,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27449,12 +27449,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27486,12 +27486,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27523,12 +27523,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27560,12 +27560,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27597,12 +27597,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27634,12 +27634,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27671,12 +27671,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27708,12 +27708,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27745,12 +27745,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27782,12 +27782,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27819,12 +27819,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27856,12 +27856,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27893,12 +27893,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27930,12 +27930,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -27967,12 +27967,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28004,12 +28004,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28041,12 +28041,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28078,12 +28078,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28115,12 +28115,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28152,12 +28152,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28189,12 +28189,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28226,12 +28226,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28263,12 +28263,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28300,12 +28300,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28337,12 +28337,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28374,12 +28374,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28411,12 +28411,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28448,12 +28448,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28485,12 +28485,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28522,12 +28522,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28559,12 +28559,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28596,12 +28596,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28633,12 +28633,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28670,12 +28670,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28707,12 +28707,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28744,12 +28744,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28781,12 +28781,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28818,12 +28818,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28855,12 +28855,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28892,12 +28892,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28929,12 +28929,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -28966,12 +28966,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29003,12 +29003,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29040,12 +29040,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29077,12 +29077,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29114,12 +29114,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29151,12 +29151,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29188,12 +29188,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29225,12 +29225,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29262,12 +29262,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29299,12 +29299,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29336,12 +29336,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29373,12 +29373,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29410,12 +29410,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29447,12 +29447,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29484,12 +29484,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29521,12 +29521,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29558,12 +29558,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29595,12 +29595,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29632,12 +29632,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29669,12 +29669,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29706,12 +29706,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29743,12 +29743,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29780,12 +29780,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29817,12 +29817,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29854,12 +29854,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29891,12 +29891,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29928,12 +29928,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -29965,12 +29965,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30002,12 +30002,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30039,12 +30039,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30076,12 +30076,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30113,12 +30113,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30150,12 +30150,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30187,12 +30187,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30224,12 +30224,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30261,12 +30261,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30298,12 +30298,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30335,12 +30335,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30372,12 +30372,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30409,12 +30409,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30446,12 +30446,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30483,12 +30483,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30520,12 +30520,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30557,12 +30557,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30594,12 +30594,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30631,12 +30631,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30668,12 +30668,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30705,12 +30705,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30742,12 +30742,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30779,12 +30779,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30816,12 +30816,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30853,12 +30853,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30890,12 +30890,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30927,12 +30927,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -30964,12 +30964,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31001,12 +31001,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31038,12 +31038,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31075,12 +31075,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31112,12 +31112,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31149,12 +31149,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31186,12 +31186,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31223,12 +31223,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31260,12 +31260,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31297,12 +31297,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31334,12 +31334,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31371,12 +31371,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31408,12 +31408,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31445,12 +31445,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31482,12 +31482,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31519,12 +31519,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31556,12 +31556,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31593,12 +31593,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31630,12 +31630,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31667,12 +31667,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31704,12 +31704,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31741,12 +31741,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31778,12 +31778,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31815,12 +31815,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31852,12 +31852,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31889,12 +31889,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31926,12 +31926,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -31963,12 +31963,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32000,12 +32000,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32037,12 +32037,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32074,12 +32074,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32111,12 +32111,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32148,12 +32148,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32185,12 +32185,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32222,12 +32222,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32259,12 +32259,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32296,12 +32296,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32333,12 +32333,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32370,12 +32370,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32407,12 +32407,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32444,12 +32444,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32481,12 +32481,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32518,12 +32518,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32555,12 +32555,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32592,12 +32592,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32629,12 +32629,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32666,12 +32666,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32703,12 +32703,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32740,12 +32740,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32777,12 +32777,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32814,12 +32814,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32851,12 +32851,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32888,12 +32888,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32925,12 +32925,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32962,12 +32962,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -32999,12 +32999,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33036,12 +33036,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33073,12 +33073,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33110,12 +33110,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33147,12 +33147,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33184,12 +33184,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33221,12 +33221,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33258,12 +33258,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33295,12 +33295,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33332,12 +33332,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33369,12 +33369,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33406,12 +33406,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33443,12 +33443,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33480,12 +33480,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33517,12 +33517,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33554,12 +33554,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33591,12 +33591,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33628,12 +33628,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33665,12 +33665,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33702,12 +33702,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33739,12 +33739,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33776,12 +33776,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33813,12 +33813,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33850,12 +33850,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33887,12 +33887,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33924,12 +33924,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33961,12 +33961,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -33998,12 +33998,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34035,12 +34035,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34072,12 +34072,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34109,12 +34109,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34146,12 +34146,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34183,12 +34183,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34220,12 +34220,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34257,12 +34257,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34294,12 +34294,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34331,12 +34331,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34368,12 +34368,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34405,12 +34405,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34442,12 +34442,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34479,12 +34479,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34516,12 +34516,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34553,12 +34553,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34590,12 +34590,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34627,12 +34627,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34664,12 +34664,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34701,12 +34701,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34738,12 +34738,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34775,12 +34775,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34812,12 +34812,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34849,12 +34849,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34886,12 +34886,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34923,12 +34923,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34960,12 +34960,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -34997,12 +34997,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35034,12 +35034,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35071,12 +35071,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35108,12 +35108,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35145,12 +35145,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35182,12 +35182,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35219,12 +35219,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35256,12 +35256,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35293,12 +35293,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35330,12 +35330,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35367,12 +35367,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35404,12 +35404,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35441,12 +35441,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35478,12 +35478,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35515,12 +35515,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35552,12 +35552,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35589,12 +35589,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35626,12 +35626,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35663,12 +35663,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35700,12 +35700,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35737,12 +35737,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35774,12 +35774,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35811,12 +35811,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35848,12 +35848,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35885,12 +35885,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35922,12 +35922,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35959,12 +35959,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -35996,12 +35996,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36033,12 +36033,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36070,12 +36070,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36107,12 +36107,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36144,12 +36144,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36181,12 +36181,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36218,12 +36218,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36255,12 +36255,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36292,12 +36292,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36329,12 +36329,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36366,12 +36366,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36403,12 +36403,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36440,12 +36440,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36477,12 +36477,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36514,12 +36514,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36551,12 +36551,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36588,12 +36588,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36625,12 +36625,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36662,12 +36662,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36699,12 +36699,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36736,12 +36736,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36773,12 +36773,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36810,12 +36810,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36847,12 +36847,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36884,12 +36884,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36921,12 +36921,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36958,12 +36958,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -36995,12 +36995,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37032,12 +37032,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37069,12 +37069,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37106,12 +37106,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37143,12 +37143,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37180,12 +37180,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37217,12 +37217,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37254,12 +37254,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37291,12 +37291,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37328,12 +37328,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37365,12 +37365,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37402,12 +37402,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37439,12 +37439,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37476,12 +37476,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37513,12 +37513,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37550,12 +37550,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37587,12 +37587,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37624,12 +37624,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37661,12 +37661,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37698,12 +37698,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37735,12 +37735,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37772,12 +37772,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37809,12 +37809,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37846,12 +37846,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37883,12 +37883,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37920,12 +37920,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37957,12 +37957,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -37994,12 +37994,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38031,12 +38031,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38068,12 +38068,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38105,12 +38105,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38142,12 +38142,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38179,12 +38179,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38216,12 +38216,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38253,12 +38253,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38290,12 +38290,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38327,12 +38327,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38364,12 +38364,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38401,12 +38401,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38438,12 +38438,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38475,12 +38475,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38512,12 +38512,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38549,12 +38549,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38586,12 +38586,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38623,12 +38623,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38660,12 +38660,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38697,12 +38697,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38734,12 +38734,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38771,12 +38771,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38808,12 +38808,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38845,12 +38845,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38882,12 +38882,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38919,12 +38919,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38956,12 +38956,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -38993,12 +38993,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39030,12 +39030,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39067,12 +39067,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39104,12 +39104,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39141,12 +39141,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39178,12 +39178,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39215,12 +39215,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39252,12 +39252,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39289,12 +39289,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39326,12 +39326,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39363,12 +39363,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39400,12 +39400,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39437,12 +39437,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39474,12 +39474,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39511,12 +39511,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39548,12 +39548,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39585,12 +39585,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39622,12 +39622,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39659,12 +39659,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39696,12 +39696,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39733,12 +39733,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39770,12 +39770,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39807,12 +39807,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39844,12 +39844,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39881,12 +39881,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39918,12 +39918,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39955,12 +39955,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -39992,12 +39992,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40029,12 +40029,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40066,12 +40066,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40103,12 +40103,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40140,12 +40140,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40177,12 +40177,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40214,12 +40214,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40251,12 +40251,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40288,12 +40288,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40325,12 +40325,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40362,12 +40362,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40399,12 +40399,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40436,12 +40436,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40473,12 +40473,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40510,12 +40510,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40547,12 +40547,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40584,12 +40584,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40621,12 +40621,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40658,12 +40658,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40695,12 +40695,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40732,12 +40732,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40769,12 +40769,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40806,12 +40806,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40843,12 +40843,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40880,12 +40880,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40917,12 +40917,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40954,12 +40954,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -40991,12 +40991,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41028,12 +41028,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41065,12 +41065,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41102,12 +41102,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41139,12 +41139,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41176,12 +41176,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41213,12 +41213,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41250,12 +41250,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41287,12 +41287,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41324,12 +41324,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41361,12 +41361,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41398,12 +41398,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41435,12 +41435,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41472,12 +41472,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41509,12 +41509,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41546,12 +41546,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41583,12 +41583,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41620,12 +41620,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41657,12 +41657,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41694,12 +41694,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41731,12 +41731,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41768,12 +41768,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41805,12 +41805,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41842,12 +41842,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41879,12 +41879,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41916,12 +41916,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41953,12 +41953,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -41990,12 +41990,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42027,12 +42027,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42064,12 +42064,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42101,12 +42101,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42138,12 +42138,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42175,12 +42175,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42212,12 +42212,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42249,12 +42249,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42286,12 +42286,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42323,12 +42323,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42360,12 +42360,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42397,12 +42397,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42434,12 +42434,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42471,12 +42471,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42508,12 +42508,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42545,12 +42545,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42582,12 +42582,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42619,12 +42619,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42656,12 +42656,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42693,12 +42693,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42730,12 +42730,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42767,12 +42767,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42804,12 +42804,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42841,12 +42841,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42878,12 +42878,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42915,12 +42915,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42952,12 +42952,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -42989,12 +42989,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43026,12 +43026,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43063,12 +43063,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43100,12 +43100,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43137,12 +43137,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43174,12 +43174,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43211,12 +43211,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43248,12 +43248,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43285,12 +43285,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43322,12 +43322,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43359,12 +43359,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43396,12 +43396,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43433,12 +43433,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43470,12 +43470,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43507,12 +43507,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43544,12 +43544,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43581,12 +43581,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43618,12 +43618,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43655,12 +43655,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43692,12 +43692,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43729,12 +43729,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43766,12 +43766,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43803,12 +43803,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43840,12 +43840,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43877,12 +43877,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43914,12 +43914,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43951,12 +43951,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -43988,12 +43988,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44025,12 +44025,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44062,12 +44062,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44099,12 +44099,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44136,12 +44136,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44173,12 +44173,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44210,12 +44210,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44247,12 +44247,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44284,12 +44284,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44321,12 +44321,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44358,12 +44358,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44395,12 +44395,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44432,12 +44432,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44469,12 +44469,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44506,12 +44506,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44543,12 +44543,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44580,12 +44580,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44617,12 +44617,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44654,12 +44654,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44691,12 +44691,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44728,12 +44728,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44765,12 +44765,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44802,12 +44802,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44839,12 +44839,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44876,12 +44876,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44913,12 +44913,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44950,12 +44950,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -44987,12 +44987,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45024,12 +45024,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45061,12 +45061,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45098,12 +45098,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45135,12 +45135,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45172,12 +45172,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45209,12 +45209,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45246,12 +45246,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45283,12 +45283,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45320,12 +45320,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45357,12 +45357,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45394,12 +45394,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45431,12 +45431,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45468,12 +45468,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45505,12 +45505,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45542,12 +45542,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45579,12 +45579,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45616,12 +45616,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45653,12 +45653,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45690,12 +45690,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45727,12 +45727,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45764,12 +45764,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45801,12 +45801,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45838,12 +45838,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45875,12 +45875,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45912,12 +45912,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45949,12 +45949,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -45986,12 +45986,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46023,12 +46023,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46060,12 +46060,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46097,12 +46097,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46134,12 +46134,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46171,12 +46171,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46208,12 +46208,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46245,12 +46245,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46282,12 +46282,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46319,12 +46319,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46356,12 +46356,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46393,12 +46393,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46430,12 +46430,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46467,12 +46467,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46504,12 +46504,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46541,12 +46541,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46578,12 +46578,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46615,12 +46615,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46652,12 +46652,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46689,12 +46689,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46726,12 +46726,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46763,12 +46763,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46800,12 +46800,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46837,12 +46837,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46874,12 +46874,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46911,12 +46911,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46948,12 +46948,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -46985,12 +46985,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47022,12 +47022,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47059,12 +47059,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47096,12 +47096,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47133,12 +47133,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47170,12 +47170,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47207,12 +47207,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47244,12 +47244,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47281,12 +47281,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47318,12 +47318,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47355,12 +47355,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47392,12 +47392,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47429,12 +47429,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47466,12 +47466,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47503,12 +47503,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47540,12 +47540,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47577,12 +47577,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47614,12 +47614,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47651,12 +47651,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47688,12 +47688,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47725,12 +47725,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47762,12 +47762,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47799,12 +47799,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47836,12 +47836,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47873,12 +47873,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47910,12 +47910,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47947,12 +47947,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -47984,12 +47984,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48021,12 +48021,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48058,12 +48058,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48095,12 +48095,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48132,12 +48132,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48169,12 +48169,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48206,12 +48206,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48243,12 +48243,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48280,12 +48280,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48317,12 +48317,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48354,12 +48354,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48391,12 +48391,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48428,12 +48428,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48465,12 +48465,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48502,12 +48502,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48539,12 +48539,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48576,12 +48576,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48613,12 +48613,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48650,12 +48650,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48687,12 +48687,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48724,12 +48724,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48761,12 +48761,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48798,12 +48798,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48835,12 +48835,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48872,12 +48872,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48909,12 +48909,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48946,12 +48946,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -48983,12 +48983,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49020,12 +49020,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49057,12 +49057,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49094,12 +49094,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49131,12 +49131,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49168,12 +49168,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49205,12 +49205,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49242,12 +49242,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49279,12 +49279,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49316,12 +49316,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49353,12 +49353,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49390,12 +49390,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49427,12 +49427,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49464,12 +49464,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49501,12 +49501,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49538,12 +49538,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49575,12 +49575,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49612,12 +49612,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49649,12 +49649,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49686,12 +49686,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49723,12 +49723,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49760,12 +49760,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49797,12 +49797,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49834,12 +49834,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49871,12 +49871,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49908,12 +49908,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49945,12 +49945,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -49982,12 +49982,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50019,12 +50019,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50056,12 +50056,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50093,12 +50093,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50130,12 +50130,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50167,12 +50167,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50204,12 +50204,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50241,12 +50241,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50278,12 +50278,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50315,12 +50315,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50352,12 +50352,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50389,12 +50389,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50426,12 +50426,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50463,12 +50463,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50500,12 +50500,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50537,12 +50537,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50574,12 +50574,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50611,12 +50611,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50648,12 +50648,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50685,12 +50685,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50722,12 +50722,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50759,12 +50759,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50796,12 +50796,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50833,12 +50833,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50870,12 +50870,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50907,12 +50907,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50944,12 +50944,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -50981,12 +50981,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51018,12 +51018,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51055,12 +51055,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51092,12 +51092,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51129,12 +51129,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51166,12 +51166,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51203,12 +51203,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51240,12 +51240,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51277,12 +51277,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51314,12 +51314,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51351,12 +51351,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51388,12 +51388,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51425,12 +51425,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51462,12 +51462,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51499,12 +51499,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51536,12 +51536,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51573,12 +51573,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51610,12 +51610,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51647,12 +51647,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51684,12 +51684,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51721,12 +51721,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51758,12 +51758,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51795,12 +51795,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51832,12 +51832,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51869,12 +51869,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51906,12 +51906,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51943,12 +51943,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -51980,12 +51980,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52017,12 +52017,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52054,12 +52054,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52091,12 +52091,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52128,12 +52128,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52165,12 +52165,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52202,12 +52202,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52239,12 +52239,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52276,12 +52276,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52313,12 +52313,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52350,12 +52350,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52387,12 +52387,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52424,12 +52424,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52461,12 +52461,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52498,12 +52498,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52535,12 +52535,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52572,12 +52572,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52609,12 +52609,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52646,12 +52646,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52683,12 +52683,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52720,12 +52720,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52757,12 +52757,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52794,12 +52794,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52831,12 +52831,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52868,12 +52868,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52905,12 +52905,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52942,12 +52942,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -52979,12 +52979,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53016,12 +53016,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53053,12 +53053,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53090,12 +53090,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53127,12 +53127,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53164,12 +53164,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53201,12 +53201,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53238,12 +53238,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53275,12 +53275,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53312,12 +53312,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53349,12 +53349,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53386,12 +53386,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53423,12 +53423,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53460,12 +53460,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53497,12 +53497,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53534,12 +53534,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53571,12 +53571,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53608,12 +53608,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53645,12 +53645,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53682,12 +53682,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53719,12 +53719,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53756,12 +53756,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53793,12 +53793,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53830,12 +53830,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53867,12 +53867,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53904,12 +53904,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53941,12 +53941,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -53978,12 +53978,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54015,12 +54015,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54052,12 +54052,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54089,12 +54089,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54126,12 +54126,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54163,12 +54163,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54200,12 +54200,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54237,12 +54237,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54274,12 +54274,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54311,12 +54311,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54348,12 +54348,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54385,12 +54385,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54422,12 +54422,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54459,12 +54459,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54496,12 +54496,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54533,12 +54533,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54570,12 +54570,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54607,12 +54607,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54644,12 +54644,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54681,12 +54681,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54718,12 +54718,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54755,12 +54755,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54792,12 +54792,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54829,12 +54829,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54866,12 +54866,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54903,12 +54903,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54940,12 +54940,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -54977,12 +54977,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55014,12 +55014,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55051,12 +55051,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55088,12 +55088,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55125,12 +55125,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55162,12 +55162,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55199,12 +55199,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55236,12 +55236,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55273,12 +55273,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55310,12 +55310,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55347,12 +55347,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55384,12 +55384,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55421,12 +55421,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55458,12 +55458,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55495,12 +55495,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55532,12 +55532,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55569,12 +55569,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55606,12 +55606,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55643,12 +55643,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55680,12 +55680,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55717,12 +55717,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55754,12 +55754,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55791,12 +55791,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55828,12 +55828,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55865,12 +55865,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55902,12 +55902,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55939,12 +55939,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -55976,12 +55976,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56013,12 +56013,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56050,12 +56050,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56087,12 +56087,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56124,12 +56124,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56161,12 +56161,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56198,12 +56198,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56235,12 +56235,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56272,12 +56272,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56309,12 +56309,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56346,12 +56346,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56383,12 +56383,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56420,12 +56420,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56457,12 +56457,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56494,12 +56494,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56531,12 +56531,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56568,12 +56568,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56605,12 +56605,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56642,12 +56642,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56679,12 +56679,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56716,12 +56716,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56753,12 +56753,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56790,12 +56790,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" }, { "measurement aggregate document": { @@ -56827,12 +56827,12 @@ "unit": "#" }, "experiment type": "HrpElisa1536", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "TEST RUN NO.": 412.0 + } }, - "analyst": "USER", - "custom information document": { - "TEST RUN NO.": 412.0 - } + "analyst": "USER" } ], "data system document": { diff --git a/tests/parsers/perkin_elmer_envision/perkin_elmer_envision_structure_test.py b/tests/parsers/perkin_elmer_envision/perkin_elmer_envision_structure_test.py index eb6537ecce..27179d6938 100644 --- a/tests/parsers/perkin_elmer_envision/perkin_elmer_envision_structure_test.py +++ b/tests/parsers/perkin_elmer_envision/perkin_elmer_envision_structure_test.py @@ -51,6 +51,20 @@ def test_create_plate_info() -> None: measured_height=11.9, chamber_temperature_at_start=23.17, label="AC HTRF Laser [Eu](1)", + custom_info={}, + sample_custom_info={"group identifier": None, "Repeat": 1.0}, + device_control_custom_info={ + "Ambient temperature at start": None, + "Ambient temperature at end": None, + "Chamber temperature at end": None, + "Humidity at start": None, + "Humidity at end": None, + "Kinetics": 0.0, + "ScanX": None, + "ScanY": None, + "Inside temperature at start": None, + "Inside temperature at end": None, + }, ) series = ResultPlateInfo.get_series(reader) @@ -157,17 +171,33 @@ def test_create_plates() -> None: measured_height=1.1, chamber_temperature_at_start=14.5, label="AC HTRF Laser [Eu](1)", + custom_info={}, + sample_custom_info={"group identifier": None, "Repeat": 1.0}, + device_control_custom_info={ + "Ambient temperature at start": None, + "Ambient temperature at end": None, + "Chamber temperature at end": None, + "Humidity at start": None, + "Humidity at end": None, + "Kinetics": 0.0, + "ScanX": None, + "ScanY": None, + "Inside temperature at start": None, + "Inside temperature at end": None, + }, ), background_infos=[ BackgroundInfo( plate_num="2", label="AC HTRF Laser [Eu]", measinfo="De=1st Ex=Top Em=Top Wdw=1 (14)", + custom_info={"Meastime": "00:00:00.000", "Result": 0.0}, ), BackgroundInfo( plate_num="2", label="AC HTRF Laser [Eu]", measinfo="De=2nd Ex=Top Em=Top Wdw=1 (142)", + custom_info={"Meastime": "00:00:00.000", "Result": 0.0}, ), ], results=[ @@ -229,17 +259,21 @@ def test_create_plates_with_calculated_data() -> None: chamber_temperature_at_start=14.5, formula="Calc 1: General = X / 2 where X = test", name="Calc 1: General", + custom_info={"Kinetics": 0.0, "Repeat": 1.0}, ), + custom_info={}, background_infos=[ BackgroundInfo( plate_num="2", label="AC HTRF Laser [Eu]", measinfo="De=1st Ex=Top Em=Top Wdw=1 (14)", + custom_info={"Meastime": "00:00:00.000", "Result": 0.0}, ), BackgroundInfo( plate_num="2", label="AC HTRF Laser [Eu]", measinfo="De=2nd Ex=Top Em=Top Wdw=1 (142)", + custom_info={"Meastime": "00:00:00.000", "Result": 0.0}, ), ], results=[ @@ -288,6 +322,7 @@ def test_create_calculated_plate_info() -> None: formula="Calc 1: General = (X / Y) where X = AC HTRF Laser [Eu](1) Y = AC HTRF Laser [Eu](1)", name="Calc 1: General", chamber_temperature_at_start=None, + custom_info={}, ) assert calculated_plate_info == expected @@ -334,13 +369,18 @@ def test_create_basic_assay_info() -> None: "Assay Exported: ,,,,10/13/2022 3:08:15 PM", "Protocol ID: ,,,,100302", "Protocol Name: ,,,,HTRF LASER Eu 665/620", - "Serial#: ,,,,='1050209'", ] ) expected = BasicAssayInfo( protocol_id="100302", assay_id="3134", + custom_info={ + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM", + "Assay Exported": "10/13/2022 3:08:15 PM", + }, ) assert BasicAssayInfo.create(reader) == expected @@ -369,7 +409,9 @@ def test_create_plate_type() -> None: ] ) - expected = PlateType(number_of_wells=2) + expected = PlateType( + number_of_wells=2, custom_info={"Name of the plate type": "plate"} + ) assert PlateType.create(reader) == expected diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_absorbance_example01.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_absorbance_example01.json index c56c3105a7..c0a066fd32 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_absorbance_example01.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_absorbance_example01.json @@ -18,7 +18,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27,7 +55,12 @@ "sample identifier": "8/22/2023 10:50:28 AM A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0, + "Name of the plate type": "384 OptiPlate" + } }, "absorbance": { "value": 2, @@ -46,7 +79,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -65,7 +104,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -74,7 +141,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -93,7 +164,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -112,7 +189,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -121,7 +226,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -140,7 +249,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -159,7 +274,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -168,7 +311,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -187,7 +334,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -206,7 +359,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -215,7 +396,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -234,7 +419,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -253,7 +444,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -262,7 +481,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -281,7 +504,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -300,7 +529,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -309,7 +566,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -328,7 +589,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -347,7 +614,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -356,7 +651,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -375,7 +674,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -394,7 +699,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -403,7 +736,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -422,7 +759,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -441,7 +784,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -450,7 +821,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -469,7 +844,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -488,7 +869,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -497,7 +906,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -516,7 +929,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -535,7 +954,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -544,7 +991,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -563,7 +1014,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -582,7 +1039,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -591,7 +1076,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A13", "location identifier": "A13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -610,7 +1099,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -629,7 +1124,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -638,7 +1161,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A14", "location identifier": "A14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -657,7 +1184,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -676,7 +1209,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -685,7 +1246,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A15", "location identifier": "A15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -704,7 +1269,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -723,7 +1294,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -732,7 +1331,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A16", "location identifier": "A16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -751,7 +1354,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -770,7 +1379,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -779,7 +1416,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A17", "location identifier": "A17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -798,7 +1439,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -817,7 +1464,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -826,7 +1501,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A18", "location identifier": "A18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -845,7 +1524,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -864,7 +1549,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -873,7 +1586,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A19", "location identifier": "A19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -892,7 +1609,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -911,7 +1634,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -920,7 +1671,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A20", "location identifier": "A20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -939,7 +1694,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -958,7 +1719,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -967,7 +1756,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A21", "location identifier": "A21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -986,7 +1779,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1005,7 +1804,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1014,7 +1841,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A22", "location identifier": "A22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1033,7 +1864,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1052,7 +1889,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1061,7 +1926,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A23", "location identifier": "A23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1080,7 +1949,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1099,7 +1974,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1108,7 +2011,11 @@ "sample identifier": "8/22/2023 10:50:28 AM A24", "location identifier": "A24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1127,7 +2034,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1146,7 +2059,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1155,7 +2096,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1174,7 +2119,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1193,7 +2144,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1202,7 +2181,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1221,7 +2204,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1240,7 +2229,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1249,7 +2266,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1268,7 +2289,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1287,7 +2314,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1296,7 +2351,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1315,7 +2374,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1334,7 +2399,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1343,7 +2436,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1362,7 +2459,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1381,7 +2484,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1390,7 +2521,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1409,7 +2544,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1428,7 +2569,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1437,7 +2606,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1456,7 +2629,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1475,7 +2654,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1484,7 +2691,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1503,7 +2714,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1522,7 +2739,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1531,7 +2776,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1550,7 +2799,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1569,7 +2824,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1578,7 +2861,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1597,7 +2884,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1616,7 +2909,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1625,7 +2946,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1644,7 +2969,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1663,7 +2994,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1672,7 +3031,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1691,7 +3054,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1710,7 +3079,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1719,7 +3116,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B13", "location identifier": "B13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1738,7 +3139,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1757,7 +3164,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1766,7 +3201,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B14", "location identifier": "B14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1785,7 +3224,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1804,7 +3249,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1813,7 +3286,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B15", "location identifier": "B15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1832,7 +3309,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1851,7 +3334,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1860,7 +3371,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B16", "location identifier": "B16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1879,7 +3394,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1898,7 +3419,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1907,7 +3456,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B17", "location identifier": "B17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1926,7 +3479,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1945,7 +3504,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1954,7 +3541,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B18", "location identifier": "B18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -1973,7 +3564,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -1992,7 +3589,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2001,7 +3626,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B19", "location identifier": "B19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2020,7 +3649,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2039,7 +3674,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2048,7 +3711,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B20", "location identifier": "B20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2067,7 +3734,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2086,7 +3759,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2095,7 +3796,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B21", "location identifier": "B21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2114,7 +3819,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2133,7 +3844,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2142,7 +3881,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B22", "location identifier": "B22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2161,7 +3904,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2180,7 +3929,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2189,7 +3966,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B23", "location identifier": "B23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2208,7 +3989,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2227,7 +4014,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2236,7 +4051,11 @@ "sample identifier": "8/22/2023 10:50:28 AM B24", "location identifier": "B24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2255,7 +4074,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2274,7 +4099,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2283,7 +4136,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2302,7 +4159,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2321,7 +4184,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2330,7 +4221,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2349,7 +4244,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2368,7 +4269,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2377,7 +4306,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2396,7 +4329,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2415,7 +4354,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2424,7 +4391,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2443,7 +4414,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2462,7 +4439,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2471,7 +4476,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2490,7 +4499,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2509,7 +4524,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2518,7 +4561,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2537,7 +4584,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2556,7 +4609,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2565,7 +4646,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2584,7 +4669,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2603,7 +4694,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2612,7 +4731,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2631,7 +4754,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2650,7 +4779,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2659,7 +4816,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2678,7 +4839,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2697,7 +4864,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2706,7 +4901,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2725,7 +4924,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2744,7 +4949,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2753,7 +4986,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2772,7 +5009,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2791,7 +5034,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2800,7 +5071,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2819,7 +5094,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2838,7 +5119,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2847,7 +5156,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C13", "location identifier": "C13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2866,7 +5179,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2885,7 +5204,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2894,7 +5241,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C14", "location identifier": "C14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2913,7 +5264,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2932,7 +5289,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2941,7 +5326,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C15", "location identifier": "C15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -2960,7 +5349,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -2979,7 +5374,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2988,7 +5411,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C16", "location identifier": "C16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3007,7 +5434,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3026,7 +5459,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3035,7 +5496,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C17", "location identifier": "C17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3054,7 +5519,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3073,7 +5544,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3082,7 +5581,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C18", "location identifier": "C18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3101,7 +5604,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3120,7 +5629,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3129,7 +5666,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C19", "location identifier": "C19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3148,7 +5689,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3167,7 +5714,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3176,7 +5751,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C20", "location identifier": "C20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3195,7 +5774,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3214,7 +5799,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3223,7 +5836,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C21", "location identifier": "C21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3242,7 +5859,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3261,7 +5884,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3270,7 +5921,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C22", "location identifier": "C22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3289,7 +5944,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3308,7 +5969,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3317,7 +6006,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C23", "location identifier": "C23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3336,7 +6029,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3355,7 +6054,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3364,7 +6091,11 @@ "sample identifier": "8/22/2023 10:50:28 AM C24", "location identifier": "C24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3383,7 +6114,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3402,7 +6139,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3411,7 +6176,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3430,7 +6199,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3449,7 +6224,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3458,7 +6261,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3477,7 +6284,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3496,7 +6309,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3505,7 +6346,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3524,7 +6369,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3543,7 +6394,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3552,7 +6431,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3571,7 +6454,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3590,7 +6479,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3599,7 +6516,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3618,7 +6539,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3637,7 +6564,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3646,7 +6601,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3665,7 +6624,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3684,7 +6649,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3693,7 +6686,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3712,7 +6709,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3731,7 +6734,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3740,7 +6771,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3759,7 +6794,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3778,7 +6819,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3787,7 +6856,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3806,7 +6879,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3825,7 +6904,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3834,7 +6941,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3853,7 +6964,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3872,7 +6989,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3881,7 +7026,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3900,7 +7049,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3919,7 +7074,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3928,7 +7111,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3947,7 +7134,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -3966,7 +7159,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3975,7 +7196,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D13", "location identifier": "D13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -3994,7 +7219,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4013,7 +7244,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4022,7 +7281,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D14", "location identifier": "D14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4041,7 +7304,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4060,7 +7329,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4069,7 +7366,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D15", "location identifier": "D15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4088,7 +7389,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4107,7 +7414,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4116,7 +7451,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D16", "location identifier": "D16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4135,7 +7474,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4154,7 +7499,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4163,7 +7536,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D17", "location identifier": "D17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4182,7 +7559,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4201,7 +7584,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4210,7 +7621,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D18", "location identifier": "D18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4229,7 +7644,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4248,7 +7669,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4257,7 +7706,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D19", "location identifier": "D19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4276,7 +7729,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4295,7 +7754,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4304,7 +7791,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D20", "location identifier": "D20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4323,7 +7814,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4342,7 +7839,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4351,7 +7876,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D21", "location identifier": "D21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4370,7 +7899,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4389,7 +7924,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4398,7 +7961,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D22", "location identifier": "D22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4417,7 +7984,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4436,7 +8009,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4445,7 +8046,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D23", "location identifier": "D23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4464,7 +8069,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4483,7 +8094,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4492,7 +8131,11 @@ "sample identifier": "8/22/2023 10:50:28 AM D24", "location identifier": "D24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4511,7 +8154,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4530,7 +8179,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4539,7 +8216,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4558,7 +8239,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4577,7 +8264,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4586,7 +8301,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4605,7 +8324,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4624,7 +8349,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4633,7 +8386,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4652,7 +8409,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4671,7 +8434,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4680,7 +8471,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4699,7 +8494,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4718,7 +8519,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4727,7 +8556,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4746,7 +8579,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4765,7 +8604,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4774,7 +8641,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4793,7 +8664,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4812,7 +8689,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4821,7 +8726,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4840,7 +8749,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4859,7 +8774,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4868,7 +8811,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4887,7 +8834,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4906,7 +8859,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4915,7 +8896,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4934,7 +8919,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -4953,7 +8944,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4962,7 +8981,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -4981,7 +9004,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5000,7 +9029,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5009,7 +9066,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5028,7 +9089,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5047,7 +9114,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5056,7 +9151,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5075,7 +9174,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5094,7 +9199,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5103,7 +9236,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E13", "location identifier": "E13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5122,7 +9259,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5141,7 +9284,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5150,7 +9321,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E14", "location identifier": "E14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5169,7 +9344,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5188,7 +9369,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5197,7 +9406,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E15", "location identifier": "E15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5216,7 +9429,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5235,7 +9454,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5244,7 +9491,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E16", "location identifier": "E16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5263,7 +9514,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5282,7 +9539,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5291,7 +9576,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E17", "location identifier": "E17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5310,7 +9599,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5329,7 +9624,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5338,7 +9661,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E18", "location identifier": "E18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5357,7 +9684,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5376,7 +9709,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5385,7 +9746,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E19", "location identifier": "E19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5404,7 +9769,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5423,7 +9794,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5432,7 +9831,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E20", "location identifier": "E20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5451,7 +9854,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5470,7 +9879,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5479,7 +9916,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E21", "location identifier": "E21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5498,7 +9939,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5517,7 +9964,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5526,7 +10001,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E22", "location identifier": "E22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5545,7 +10024,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5564,7 +10049,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5573,7 +10086,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E23", "location identifier": "E23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5592,7 +10109,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5611,7 +10134,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5620,7 +10171,11 @@ "sample identifier": "8/22/2023 10:50:28 AM E24", "location identifier": "E24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5639,7 +10194,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5658,7 +10219,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5667,7 +10256,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5686,7 +10279,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5705,7 +10304,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5714,7 +10341,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5733,7 +10364,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5752,7 +10389,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5761,7 +10426,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5780,7 +10449,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5799,7 +10474,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5808,7 +10511,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5827,7 +10534,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5846,7 +10559,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5855,7 +10596,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5874,7 +10619,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5893,7 +10644,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5902,7 +10681,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5921,7 +10704,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5940,7 +10729,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5949,7 +10766,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -5968,7 +10789,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -5987,7 +10814,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5996,7 +10851,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6015,7 +10874,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6034,7 +10899,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6043,7 +10936,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6062,7 +10959,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6081,7 +10984,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6090,7 +11021,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6109,7 +11044,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6128,7 +11069,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6137,7 +11106,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6156,7 +11129,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6175,7 +11154,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6184,7 +11191,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6203,7 +11214,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6222,7 +11239,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6231,7 +11276,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F13", "location identifier": "F13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6250,7 +11299,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6269,7 +11324,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6278,7 +11361,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F14", "location identifier": "F14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6297,7 +11384,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6316,7 +11409,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6325,7 +11446,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F15", "location identifier": "F15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6344,7 +11469,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6363,7 +11494,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6372,7 +11531,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F16", "location identifier": "F16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6391,7 +11554,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6410,7 +11579,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6419,7 +11616,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F17", "location identifier": "F17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6438,7 +11639,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6457,7 +11664,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6466,7 +11701,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F18", "location identifier": "F18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6485,7 +11724,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6504,7 +11749,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6513,7 +11786,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F19", "location identifier": "F19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6532,7 +11809,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6551,7 +11834,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6560,7 +11871,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F20", "location identifier": "F20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6579,7 +11894,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6598,7 +11919,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6607,7 +11956,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F21", "location identifier": "F21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6626,7 +11979,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6645,7 +12004,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6654,7 +12041,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F22", "location identifier": "F22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6673,7 +12064,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6692,7 +12089,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6701,7 +12126,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F23", "location identifier": "F23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6720,7 +12149,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6739,7 +12174,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6748,7 +12211,11 @@ "sample identifier": "8/22/2023 10:50:28 AM F24", "location identifier": "F24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6767,7 +12234,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6786,7 +12259,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6795,7 +12296,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6814,7 +12319,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6833,7 +12344,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6842,7 +12381,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6861,7 +12404,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6880,7 +12429,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6889,7 +12466,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6908,7 +12489,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6927,7 +12514,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6936,7 +12551,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -6955,7 +12574,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -6974,7 +12599,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6983,7 +12636,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7002,7 +12659,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7021,7 +12684,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7030,7 +12721,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7049,7 +12744,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7068,7 +12769,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7077,7 +12806,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7096,7 +12829,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7115,7 +12854,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7124,7 +12891,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7143,7 +12914,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7162,7 +12939,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7171,7 +12976,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7190,7 +12999,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7209,7 +13024,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7218,7 +13061,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7237,7 +13084,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7256,7 +13109,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7265,7 +13146,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7284,7 +13169,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7303,7 +13194,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7312,7 +13231,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7331,7 +13254,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7350,7 +13279,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7359,7 +13316,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G13", "location identifier": "G13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7378,7 +13339,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7397,7 +13364,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7406,7 +13401,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G14", "location identifier": "G14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7425,7 +13424,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7444,7 +13449,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7453,7 +13486,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G15", "location identifier": "G15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7472,7 +13509,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7491,7 +13534,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7500,7 +13571,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G16", "location identifier": "G16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7519,7 +13594,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7538,7 +13619,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7547,7 +13656,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G17", "location identifier": "G17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7566,7 +13679,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7585,7 +13704,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7594,7 +13741,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G18", "location identifier": "G18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7613,7 +13764,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7632,7 +13789,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7641,7 +13826,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G19", "location identifier": "G19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7660,7 +13849,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7679,7 +13874,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7688,7 +13911,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G20", "location identifier": "G20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7707,7 +13934,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7726,7 +13959,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7735,7 +13996,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G21", "location identifier": "G21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7754,7 +14019,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7773,7 +14044,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7782,7 +14081,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G22", "location identifier": "G22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7801,7 +14104,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7820,7 +14129,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7829,7 +14166,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G23", "location identifier": "G23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7848,7 +14189,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7867,7 +14214,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7876,7 +14251,11 @@ "sample identifier": "8/22/2023 10:50:28 AM G24", "location identifier": "G24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7895,7 +14274,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7914,7 +14299,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7923,7 +14336,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7942,7 +14359,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -7961,7 +14384,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7970,7 +14421,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -7989,7 +14444,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8008,7 +14469,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8017,7 +14506,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8036,7 +14529,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8055,7 +14554,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8064,7 +14591,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8083,7 +14614,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8102,7 +14639,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8111,7 +14676,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8130,7 +14699,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8149,7 +14724,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8158,7 +14761,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8177,7 +14784,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8196,7 +14809,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8205,7 +14846,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8224,7 +14869,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8243,7 +14894,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8252,7 +14931,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8271,7 +14954,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8290,7 +14979,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8299,7 +15016,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8318,7 +15039,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8337,7 +15064,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8346,7 +15101,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8365,7 +15124,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8384,7 +15149,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8393,7 +15186,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8412,7 +15209,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8431,7 +15234,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8440,7 +15271,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8459,7 +15294,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8478,7 +15319,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8487,7 +15356,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H13", "location identifier": "H13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8506,7 +15379,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8525,7 +15404,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8534,7 +15441,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H14", "location identifier": "H14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8553,7 +15464,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8572,7 +15489,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8581,7 +15526,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H15", "location identifier": "H15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8600,7 +15549,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8619,7 +15574,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8628,7 +15611,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H16", "location identifier": "H16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8647,7 +15634,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8666,7 +15659,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8675,7 +15696,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H17", "location identifier": "H17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8694,7 +15719,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8713,7 +15744,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8722,7 +15781,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H18", "location identifier": "H18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8741,7 +15804,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8760,7 +15829,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8769,7 +15866,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H19", "location identifier": "H19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8788,7 +15889,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8807,7 +15914,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8816,7 +15951,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H20", "location identifier": "H20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8835,7 +15974,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8854,7 +15999,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8863,7 +16036,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H21", "location identifier": "H21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8882,7 +16059,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8901,7 +16084,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8910,7 +16121,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H22", "location identifier": "H22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8929,7 +16144,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8948,7 +16169,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8957,7 +16206,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H23", "location identifier": "H23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -8976,7 +16229,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -8995,7 +16254,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9004,7 +16291,11 @@ "sample identifier": "8/22/2023 10:50:28 AM H24", "location identifier": "H24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9023,7 +16314,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9042,7 +16339,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9051,7 +16376,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I1", "location identifier": "I1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9070,7 +16399,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9089,7 +16424,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9098,7 +16461,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I2", "location identifier": "I2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9117,7 +16484,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9136,7 +16509,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9145,7 +16546,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I3", "location identifier": "I3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9164,7 +16569,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9183,7 +16594,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9192,7 +16631,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I4", "location identifier": "I4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9211,7 +16654,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9230,7 +16679,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9239,7 +16716,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I5", "location identifier": "I5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9258,7 +16739,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9277,7 +16764,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9286,7 +16801,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I6", "location identifier": "I6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9305,7 +16824,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9324,7 +16849,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9333,7 +16886,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I7", "location identifier": "I7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9352,7 +16909,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9371,7 +16934,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9380,7 +16971,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I8", "location identifier": "I8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9399,7 +16994,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9418,7 +17019,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9427,7 +17056,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I9", "location identifier": "I9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9446,7 +17079,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9465,7 +17104,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9474,7 +17141,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I10", "location identifier": "I10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9493,7 +17164,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9512,7 +17189,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9521,7 +17226,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I11", "location identifier": "I11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9540,7 +17249,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9559,7 +17274,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9568,7 +17311,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I12", "location identifier": "I12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9587,7 +17334,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9606,7 +17359,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9615,7 +17396,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I13", "location identifier": "I13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9634,7 +17419,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9653,7 +17444,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9662,7 +17481,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I14", "location identifier": "I14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9681,7 +17504,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9700,7 +17529,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9709,7 +17566,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I15", "location identifier": "I15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9728,7 +17589,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9747,7 +17614,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9756,7 +17651,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I16", "location identifier": "I16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9775,7 +17674,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9794,7 +17699,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9803,7 +17736,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I17", "location identifier": "I17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9822,7 +17759,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9841,7 +17784,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9850,7 +17821,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I18", "location identifier": "I18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9869,7 +17844,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9888,7 +17869,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9897,7 +17906,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I19", "location identifier": "I19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9916,7 +17929,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9935,7 +17954,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9944,7 +17991,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I20", "location identifier": "I20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -9963,7 +18014,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -9982,7 +18039,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9991,7 +18076,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I21", "location identifier": "I21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10010,7 +18099,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10029,7 +18124,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10038,7 +18161,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I22", "location identifier": "I22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10057,7 +18184,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10076,7 +18209,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10085,7 +18246,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I23", "location identifier": "I23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10104,7 +18269,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10123,7 +18294,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10132,7 +18331,11 @@ "sample identifier": "8/22/2023 10:50:28 AM I24", "location identifier": "I24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10151,7 +18354,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10170,7 +18379,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10179,7 +18416,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J1", "location identifier": "J1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 3, @@ -10198,7 +18439,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10217,7 +18464,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10226,7 +18501,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J2", "location identifier": "J2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 3, @@ -10245,7 +18524,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10264,7 +18549,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10273,7 +18586,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J3", "location identifier": "J3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10292,7 +18609,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10311,7 +18634,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10320,7 +18671,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J4", "location identifier": "J4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10339,7 +18694,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10358,7 +18719,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10367,7 +18756,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J5", "location identifier": "J5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10386,7 +18779,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10405,7 +18804,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10414,7 +18841,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J6", "location identifier": "J6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10433,7 +18864,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10452,7 +18889,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10461,7 +18926,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J7", "location identifier": "J7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10480,7 +18949,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10499,7 +18974,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10508,7 +19011,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J8", "location identifier": "J8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10527,7 +19034,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10546,7 +19059,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10555,7 +19096,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J9", "location identifier": "J9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10574,7 +19119,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10593,7 +19144,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10602,7 +19181,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J10", "location identifier": "J10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10621,7 +19204,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10640,7 +19229,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10649,7 +19266,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J11", "location identifier": "J11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10668,7 +19289,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10687,7 +19314,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10696,7 +19351,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J12", "location identifier": "J12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10715,7 +19374,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10734,7 +19399,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10743,7 +19436,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J13", "location identifier": "J13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10762,7 +19459,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10781,7 +19484,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10790,7 +19521,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J14", "location identifier": "J14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10809,7 +19544,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10828,7 +19569,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10837,7 +19606,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J15", "location identifier": "J15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10856,7 +19629,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10875,7 +19654,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10884,7 +19691,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J16", "location identifier": "J16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10903,7 +19714,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10922,7 +19739,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10931,7 +19776,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J17", "location identifier": "J17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10950,7 +19799,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -10969,7 +19824,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10978,7 +19861,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J18", "location identifier": "J18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -10997,7 +19884,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11016,7 +19909,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11025,7 +19946,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J19", "location identifier": "J19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11044,7 +19969,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11063,7 +19994,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11072,7 +20031,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J20", "location identifier": "J20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11091,7 +20054,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11110,7 +20079,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11119,7 +20116,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J21", "location identifier": "J21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11138,7 +20139,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11157,7 +20164,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11166,7 +20201,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J22", "location identifier": "J22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11185,7 +20224,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11204,7 +20249,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11213,7 +20286,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J23", "location identifier": "J23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11232,7 +20309,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11251,7 +20334,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11260,7 +20371,11 @@ "sample identifier": "8/22/2023 10:50:28 AM J24", "location identifier": "J24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11279,7 +20394,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11298,7 +20419,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11307,7 +20456,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K1", "location identifier": "K1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11326,7 +20479,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11345,7 +20504,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11354,7 +20541,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K2", "location identifier": "K2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11373,7 +20564,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11392,7 +20589,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11401,7 +20626,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K3", "location identifier": "K3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11420,7 +20649,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11439,7 +20674,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11448,7 +20711,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K4", "location identifier": "K4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11467,7 +20734,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11486,7 +20759,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11495,7 +20796,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K5", "location identifier": "K5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11514,7 +20819,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11533,7 +20844,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11542,7 +20881,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K6", "location identifier": "K6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11561,7 +20904,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11580,7 +20929,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11589,7 +20966,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K7", "location identifier": "K7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11608,7 +20989,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11627,7 +21014,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11636,7 +21051,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K8", "location identifier": "K8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11655,7 +21074,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11674,7 +21099,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11683,7 +21136,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K9", "location identifier": "K9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11702,7 +21159,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11721,7 +21184,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11730,7 +21221,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K10", "location identifier": "K10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11749,7 +21244,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11768,7 +21269,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11777,7 +21306,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K11", "location identifier": "K11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11796,7 +21329,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11815,7 +21354,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11824,7 +21391,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K12", "location identifier": "K12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11843,7 +21414,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11862,7 +21439,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11871,7 +21476,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K13", "location identifier": "K13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11890,7 +21499,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11909,7 +21524,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11918,7 +21561,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K14", "location identifier": "K14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11937,7 +21584,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -11956,7 +21609,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11965,7 +21646,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K15", "location identifier": "K15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -11984,7 +21669,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12003,7 +21694,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12012,7 +21731,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K16", "location identifier": "K16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12031,7 +21754,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12050,7 +21779,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12059,7 +21816,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K17", "location identifier": "K17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12078,7 +21839,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12097,7 +21864,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12106,7 +21901,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K18", "location identifier": "K18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12125,7 +21924,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12144,7 +21949,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12153,7 +21986,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K19", "location identifier": "K19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12172,7 +22009,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12191,7 +22034,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12200,7 +22071,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K20", "location identifier": "K20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12219,7 +22094,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12238,7 +22119,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12247,7 +22156,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K21", "location identifier": "K21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12266,7 +22179,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12285,7 +22204,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12294,7 +22241,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K22", "location identifier": "K22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12313,7 +22264,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12332,7 +22289,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12341,7 +22326,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K23", "location identifier": "K23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12360,7 +22349,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12379,7 +22374,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12388,7 +22411,11 @@ "sample identifier": "8/22/2023 10:50:28 AM K24", "location identifier": "K24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12407,7 +22434,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12426,7 +22459,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12435,7 +22496,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L1", "location identifier": "L1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 3, @@ -12454,7 +22519,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12473,7 +22544,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12482,7 +22581,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L2", "location identifier": "L2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12501,7 +22604,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12520,7 +22629,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12529,7 +22666,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L3", "location identifier": "L3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12548,7 +22689,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12567,7 +22714,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12576,7 +22751,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L4", "location identifier": "L4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12595,7 +22774,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12614,7 +22799,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12623,7 +22836,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L5", "location identifier": "L5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12642,7 +22859,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12661,7 +22884,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12670,7 +22921,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L6", "location identifier": "L6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12689,7 +22944,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12708,7 +22969,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12717,7 +23006,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L7", "location identifier": "L7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12736,7 +23029,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12755,7 +23054,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12764,7 +23091,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L8", "location identifier": "L8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12783,7 +23114,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12802,7 +23139,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12811,7 +23176,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L9", "location identifier": "L9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12830,7 +23199,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12849,7 +23224,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12858,7 +23261,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L10", "location identifier": "L10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12877,7 +23284,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12896,7 +23309,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12905,7 +23346,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L11", "location identifier": "L11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12924,7 +23369,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12943,7 +23394,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12952,7 +23431,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L12", "location identifier": "L12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -12971,7 +23454,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -12990,7 +23479,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12999,7 +23516,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L13", "location identifier": "L13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13018,7 +23539,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13037,7 +23564,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13046,7 +23601,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L14", "location identifier": "L14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13065,7 +23624,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13084,7 +23649,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13093,7 +23686,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L15", "location identifier": "L15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13112,7 +23709,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13131,7 +23734,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13140,7 +23771,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L16", "location identifier": "L16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13159,7 +23794,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13178,7 +23819,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13187,7 +23856,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L17", "location identifier": "L17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13206,7 +23879,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13225,7 +23904,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13234,7 +23941,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L18", "location identifier": "L18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13253,7 +23964,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13272,7 +23989,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13281,7 +24026,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L19", "location identifier": "L19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13300,7 +24049,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13319,7 +24074,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13328,7 +24111,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L20", "location identifier": "L20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13347,7 +24134,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13366,7 +24159,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13375,7 +24196,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L21", "location identifier": "L21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13394,7 +24219,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13413,7 +24244,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13422,7 +24281,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L22", "location identifier": "L22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13441,7 +24304,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13460,7 +24329,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13469,7 +24366,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L23", "location identifier": "L23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13488,7 +24389,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13507,7 +24414,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13516,7 +24451,11 @@ "sample identifier": "8/22/2023 10:50:28 AM L24", "location identifier": "L24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13535,7 +24474,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13554,7 +24499,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13563,7 +24536,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M1", "location identifier": "M1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13582,7 +24559,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13601,7 +24584,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13610,7 +24621,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M2", "location identifier": "M2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13629,7 +24644,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13648,7 +24669,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13657,7 +24706,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M3", "location identifier": "M3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13676,7 +24729,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13695,7 +24754,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13704,7 +24791,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M4", "location identifier": "M4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13723,7 +24814,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13742,7 +24839,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13751,7 +24876,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M5", "location identifier": "M5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13770,7 +24899,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13789,7 +24924,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13798,7 +24961,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M6", "location identifier": "M6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13817,7 +24984,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13836,7 +25009,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13845,7 +25046,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M7", "location identifier": "M7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13864,7 +25069,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13883,7 +25094,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13892,7 +25131,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M8", "location identifier": "M8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13911,7 +25154,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13930,7 +25179,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13939,7 +25216,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M9", "location identifier": "M9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -13958,7 +25239,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -13977,7 +25264,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13986,7 +25301,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M10", "location identifier": "M10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14005,7 +25324,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14024,7 +25349,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14033,7 +25386,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M11", "location identifier": "M11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14052,7 +25409,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14071,7 +25434,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14080,7 +25471,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M12", "location identifier": "M12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14099,7 +25494,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14118,7 +25519,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14127,7 +25556,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M13", "location identifier": "M13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14146,7 +25579,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14165,7 +25604,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14174,7 +25641,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M14", "location identifier": "M14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14193,7 +25664,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14212,7 +25689,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14221,7 +25726,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M15", "location identifier": "M15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14240,7 +25749,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14259,7 +25774,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14268,7 +25811,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M16", "location identifier": "M16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14287,7 +25834,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14306,7 +25859,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14315,7 +25896,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M17", "location identifier": "M17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14334,7 +25919,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14353,7 +25944,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14362,7 +25981,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M18", "location identifier": "M18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14381,7 +26004,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14400,7 +26029,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14409,7 +26066,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M19", "location identifier": "M19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14428,7 +26089,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14447,7 +26114,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14456,7 +26151,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M20", "location identifier": "M20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14475,7 +26174,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14494,7 +26199,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14503,7 +26236,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M21", "location identifier": "M21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14522,7 +26259,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14541,7 +26284,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14550,7 +26321,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M22", "location identifier": "M22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14569,7 +26344,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14588,7 +26369,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14597,7 +26406,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M23", "location identifier": "M23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14616,7 +26429,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14635,7 +26454,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14644,7 +26491,11 @@ "sample identifier": "8/22/2023 10:50:28 AM M24", "location identifier": "M24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14663,7 +26514,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14682,7 +26539,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14691,7 +26576,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N1", "location identifier": "N1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 3, @@ -14710,7 +26599,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14729,7 +26624,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14738,7 +26661,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N2", "location identifier": "N2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14757,7 +26684,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14776,7 +26709,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14785,7 +26746,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N3", "location identifier": "N3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14804,7 +26769,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14823,7 +26794,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14832,7 +26831,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N4", "location identifier": "N4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14851,7 +26854,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14870,7 +26879,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14879,7 +26916,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N5", "location identifier": "N5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14898,7 +26939,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14917,7 +26964,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14926,7 +27001,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N6", "location identifier": "N6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14945,7 +27024,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -14964,7 +27049,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14973,7 +27086,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N7", "location identifier": "N7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -14992,7 +27109,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15011,7 +27134,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15020,7 +27171,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N8", "location identifier": "N8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15039,7 +27194,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15058,7 +27219,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15067,7 +27256,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N9", "location identifier": "N9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15086,7 +27279,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15105,7 +27304,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15114,7 +27341,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N10", "location identifier": "N10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15133,7 +27364,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15152,7 +27389,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15161,7 +27426,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N11", "location identifier": "N11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15180,7 +27449,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15199,7 +27474,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15208,7 +27511,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N12", "location identifier": "N12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15227,7 +27534,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15246,7 +27559,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15255,7 +27596,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N13", "location identifier": "N13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15274,7 +27619,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15293,7 +27644,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15302,7 +27681,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N14", "location identifier": "N14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15321,7 +27704,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15340,7 +27729,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15349,7 +27766,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N15", "location identifier": "N15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15368,7 +27789,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15387,7 +27814,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15396,7 +27851,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N16", "location identifier": "N16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15415,7 +27874,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15434,7 +27899,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15443,7 +27936,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N17", "location identifier": "N17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15462,7 +27959,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15481,7 +27984,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15490,7 +28021,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N18", "location identifier": "N18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15509,7 +28044,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15528,7 +28069,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15537,7 +28106,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N19", "location identifier": "N19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15556,7 +28129,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15575,7 +28154,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15584,7 +28191,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N20", "location identifier": "N20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15603,7 +28214,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15622,7 +28239,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15631,7 +28276,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N21", "location identifier": "N21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15650,7 +28299,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15669,7 +28324,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15678,7 +28361,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N22", "location identifier": "N22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15697,7 +28384,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15716,7 +28409,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15725,7 +28446,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N23", "location identifier": "N23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15744,7 +28469,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15763,7 +28494,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15772,7 +28531,11 @@ "sample identifier": "8/22/2023 10:50:28 AM N24", "location identifier": "N24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15791,7 +28554,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15810,7 +28579,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15819,7 +28616,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O1", "location identifier": "O1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15838,7 +28639,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15857,7 +28664,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15866,7 +28701,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O2", "location identifier": "O2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15885,7 +28724,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15904,7 +28749,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15913,7 +28786,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O3", "location identifier": "O3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15932,7 +28809,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15951,7 +28834,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15960,7 +28871,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O4", "location identifier": "O4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -15979,7 +28894,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -15998,7 +28919,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16007,7 +28956,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O5", "location identifier": "O5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16026,7 +28979,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16045,7 +29004,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16054,7 +29041,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O6", "location identifier": "O6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16073,7 +29064,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16092,7 +29089,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16101,7 +29126,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O7", "location identifier": "O7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16120,7 +29149,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16139,7 +29174,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16148,7 +29211,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O8", "location identifier": "O8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16167,7 +29234,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16186,7 +29259,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16195,7 +29296,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O9", "location identifier": "O9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16214,7 +29319,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16233,7 +29344,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16242,7 +29381,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O10", "location identifier": "O10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16261,7 +29404,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16280,7 +29429,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16289,7 +29466,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O11", "location identifier": "O11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16308,7 +29489,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16327,7 +29514,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16336,7 +29551,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O12", "location identifier": "O12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16355,7 +29574,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16374,7 +29599,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16383,7 +29636,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O13", "location identifier": "O13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16402,7 +29659,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16421,7 +29684,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16430,7 +29721,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O14", "location identifier": "O14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16449,7 +29744,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16468,7 +29769,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16477,7 +29806,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O15", "location identifier": "O15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16496,7 +29829,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16515,7 +29854,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16524,7 +29891,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O16", "location identifier": "O16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16543,7 +29914,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16562,7 +29939,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16571,7 +29976,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O17", "location identifier": "O17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16590,7 +29999,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16609,7 +30024,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16618,7 +30061,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O18", "location identifier": "O18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16637,7 +30084,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16656,7 +30109,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16665,7 +30146,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O19", "location identifier": "O19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16684,7 +30169,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16703,7 +30194,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16712,7 +30231,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O20", "location identifier": "O20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16731,7 +30254,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16750,7 +30279,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16759,7 +30316,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O21", "location identifier": "O21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16778,7 +30339,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16797,7 +30364,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16806,7 +30401,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O22", "location identifier": "O22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16825,7 +30424,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16844,7 +30449,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16853,7 +30486,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O23", "location identifier": "O23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16872,7 +30509,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16891,7 +30534,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16900,7 +30571,11 @@ "sample identifier": "8/22/2023 10:50:28 AM O24", "location identifier": "O24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16919,7 +30594,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16938,7 +30619,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16947,7 +30656,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P1", "location identifier": "P1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -16966,7 +30679,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -16985,7 +30704,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16994,7 +30741,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P2", "location identifier": "P2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17013,7 +30764,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17032,7 +30789,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17041,7 +30826,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P3", "location identifier": "P3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17060,7 +30849,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17079,7 +30874,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17088,7 +30911,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P4", "location identifier": "P4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17107,7 +30934,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17126,7 +30959,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17135,7 +30996,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P5", "location identifier": "P5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17154,7 +31019,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17173,7 +31044,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17182,7 +31081,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P6", "location identifier": "P6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17201,7 +31104,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17220,7 +31129,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17229,7 +31166,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P7", "location identifier": "P7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17248,7 +31189,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17267,7 +31214,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17276,7 +31251,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P8", "location identifier": "P8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17295,7 +31274,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17314,7 +31299,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17323,7 +31336,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P9", "location identifier": "P9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17342,7 +31359,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17361,7 +31384,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17370,7 +31421,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P10", "location identifier": "P10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17389,7 +31444,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17408,7 +31469,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17417,7 +31506,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P11", "location identifier": "P11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17436,7 +31529,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17455,7 +31554,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17464,7 +31591,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P12", "location identifier": "P12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17483,7 +31614,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17502,7 +31639,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17511,7 +31676,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P13", "location identifier": "P13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17530,7 +31699,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17549,7 +31724,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17558,7 +31761,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P14", "location identifier": "P14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17577,7 +31784,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17596,7 +31809,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17605,7 +31846,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P15", "location identifier": "P15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17624,7 +31869,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17643,7 +31894,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17652,7 +31931,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P16", "location identifier": "P16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17671,7 +31954,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17690,7 +31979,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17699,7 +32016,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P17", "location identifier": "P17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17718,7 +32039,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17737,7 +32064,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17746,7 +32101,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P18", "location identifier": "P18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17765,7 +32124,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17784,7 +32149,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17793,7 +32186,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P19", "location identifier": "P19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17812,7 +32209,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17831,7 +32234,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17840,7 +32271,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P20", "location identifier": "P20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17859,7 +32294,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17878,7 +32319,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17887,7 +32356,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P21", "location identifier": "P21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17906,7 +32379,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17925,7 +32404,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17934,7 +32441,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P22", "location identifier": "P22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -17953,7 +32464,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -17972,7 +32489,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17981,7 +32526,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P23", "location identifier": "P23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -18000,7 +32549,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18019,7 +32574,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.84, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.26, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 24.44, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.4, + "unit": "%" + }, + "Humidity at end": { + "value": 44.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18028,7 +32611,11 @@ "sample identifier": "8/22/2023 10:50:28 AM P24", "location identifier": "P24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:50:28 AM" + "well plate identifier": "8/22/2023 10:50:28 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 2, @@ -18047,7 +32634,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18066,7 +32659,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18075,7 +32696,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -18094,7 +32719,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18113,7 +32744,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18122,7 +32781,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -18141,7 +32804,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18160,7 +32829,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18169,7 +32866,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18188,7 +32889,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18207,7 +32914,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18216,7 +32951,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18235,7 +32974,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18254,7 +32999,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18263,7 +33036,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -18282,7 +33059,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18301,7 +33084,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18310,7 +33121,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18329,7 +33144,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18348,7 +33169,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18357,7 +33206,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18376,7 +33229,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18395,7 +33254,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18404,7 +33291,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18423,7 +33314,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18442,7 +33339,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18451,7 +33376,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18470,7 +33399,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18489,7 +33424,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18498,7 +33461,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -18517,7 +33484,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18536,7 +33509,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18545,7 +33546,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18564,7 +33569,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18583,7 +33594,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18592,7 +33631,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18611,7 +33654,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18630,7 +33679,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18639,7 +33716,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A13", "location identifier": "A13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18658,7 +33739,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18677,7 +33764,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18686,7 +33801,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A14", "location identifier": "A14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18705,7 +33824,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18724,7 +33849,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18733,7 +33886,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A15", "location identifier": "A15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -18752,7 +33909,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18771,7 +33934,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18780,7 +33971,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A16", "location identifier": "A16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18799,7 +33994,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18818,7 +34019,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18827,7 +34056,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A17", "location identifier": "A17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18846,7 +34079,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18865,7 +34104,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18874,7 +34141,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A18", "location identifier": "A18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -18893,7 +34164,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18912,7 +34189,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18921,7 +34226,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A19", "location identifier": "A19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -18940,7 +34249,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -18959,7 +34274,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18968,7 +34311,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A20", "location identifier": "A20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -18987,7 +34334,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19006,7 +34359,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19015,7 +34396,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A21", "location identifier": "A21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -19034,7 +34419,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19053,7 +34444,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19062,7 +34481,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A22", "location identifier": "A22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19081,7 +34504,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19100,7 +34529,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19109,7 +34566,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A23", "location identifier": "A23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -19128,7 +34589,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19147,7 +34614,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19156,7 +34651,11 @@ "sample identifier": "8/22/2023 10:57:39 AM A24", "location identifier": "A24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19175,7 +34674,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19194,7 +34699,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19203,7 +34736,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19222,7 +34759,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19241,7 +34784,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19250,7 +34821,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -19269,7 +34844,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19288,7 +34869,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19297,7 +34906,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19316,7 +34929,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19335,7 +34954,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19344,7 +34991,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19363,7 +35014,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19382,7 +35039,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19391,7 +35076,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19410,7 +35099,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19429,7 +35124,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19438,7 +35161,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19457,7 +35184,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19476,7 +35209,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19485,7 +35246,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -19504,7 +35269,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19523,7 +35294,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19532,7 +35331,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -19551,7 +35354,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19570,7 +35379,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19579,7 +35416,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19598,7 +35439,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19617,7 +35464,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19626,7 +35501,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19645,7 +35524,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19664,7 +35549,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19673,7 +35586,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -19692,7 +35609,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19711,7 +35634,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19720,7 +35671,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19739,7 +35694,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19758,7 +35719,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19767,7 +35756,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B13", "location identifier": "B13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19786,7 +35779,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19805,7 +35804,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19814,7 +35841,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B14", "location identifier": "B14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -19833,7 +35864,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19852,7 +35889,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19861,7 +35926,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B15", "location identifier": "B15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19880,7 +35949,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19899,7 +35974,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19908,7 +36011,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B16", "location identifier": "B16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -19927,7 +36034,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19946,7 +36059,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19955,7 +36096,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B17", "location identifier": "B17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -19974,7 +36119,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -19993,7 +36144,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20002,7 +36181,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B18", "location identifier": "B18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -20021,7 +36204,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20040,7 +36229,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20049,7 +36266,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B19", "location identifier": "B19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -20068,7 +36289,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20087,7 +36314,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20096,7 +36351,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B20", "location identifier": "B20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -20115,7 +36374,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20134,7 +36399,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20143,7 +36436,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B21", "location identifier": "B21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -20162,7 +36459,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20181,7 +36484,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20190,7 +36521,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B22", "location identifier": "B22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -20209,7 +36544,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20228,7 +36569,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20237,7 +36606,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B23", "location identifier": "B23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -20256,7 +36629,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20275,7 +36654,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20284,7 +36691,11 @@ "sample identifier": "8/22/2023 10:57:39 AM B24", "location identifier": "B24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -20303,7 +36714,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20322,7 +36739,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20331,7 +36776,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -20350,7 +36799,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20369,7 +36824,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20378,7 +36861,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -20397,7 +36884,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20416,7 +36909,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20425,7 +36946,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -20444,7 +36969,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20463,7 +36994,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20472,7 +37031,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -20491,7 +37054,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20510,7 +37079,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20519,7 +37116,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -20538,7 +37139,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20557,7 +37164,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20566,7 +37201,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -20585,7 +37224,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20604,7 +37249,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20613,7 +37286,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -20632,7 +37309,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20651,7 +37334,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20660,7 +37371,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -20679,7 +37394,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20698,7 +37419,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20707,7 +37456,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -20726,7 +37479,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20745,7 +37504,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20754,7 +37541,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -20773,7 +37564,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20792,7 +37589,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20801,7 +37626,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -20820,7 +37649,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20839,7 +37674,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20848,7 +37711,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -20867,7 +37734,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20886,7 +37759,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20895,7 +37796,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C13", "location identifier": "C13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -20914,7 +37819,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20933,7 +37844,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20942,7 +37881,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C14", "location identifier": "C14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -20961,7 +37904,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -20980,7 +37929,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20989,7 +37966,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C15", "location identifier": "C15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -21008,7 +37989,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21027,7 +38014,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21036,7 +38051,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C16", "location identifier": "C16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21055,7 +38074,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21074,7 +38099,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21083,7 +38136,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C17", "location identifier": "C17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21102,7 +38159,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21121,7 +38184,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21130,7 +38221,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C18", "location identifier": "C18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -21149,7 +38244,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21168,7 +38269,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21177,7 +38306,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C19", "location identifier": "C19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21196,7 +38329,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21215,7 +38354,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21224,7 +38391,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C20", "location identifier": "C20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21243,7 +38414,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21262,7 +38439,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21271,7 +38476,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C21", "location identifier": "C21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -21290,7 +38499,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21309,7 +38524,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21318,7 +38561,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C22", "location identifier": "C22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21337,7 +38584,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21356,7 +38609,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21365,7 +38646,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C23", "location identifier": "C23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -21384,7 +38669,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21403,7 +38694,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21412,7 +38731,11 @@ "sample identifier": "8/22/2023 10:57:39 AM C24", "location identifier": "C24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -21431,7 +38754,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21450,7 +38779,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21459,7 +38816,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21478,7 +38839,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21497,7 +38864,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21506,7 +38901,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21525,7 +38924,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21544,7 +38949,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21553,7 +38986,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -21572,7 +39009,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21591,7 +39034,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21600,7 +39071,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -21619,7 +39094,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21638,7 +39119,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21647,7 +39156,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21666,7 +39179,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21685,7 +39204,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21694,7 +39241,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21713,7 +39264,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21732,7 +39289,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21741,7 +39326,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21760,7 +39349,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21779,7 +39374,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21788,7 +39411,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -21807,7 +39434,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21826,7 +39459,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21835,7 +39496,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21854,7 +39519,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21873,7 +39544,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21882,7 +39581,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21901,7 +39604,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21920,7 +39629,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21929,7 +39666,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -21948,7 +39689,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -21967,7 +39714,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21976,7 +39751,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -21995,7 +39774,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22014,7 +39799,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22023,7 +39836,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D13", "location identifier": "D13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -22042,7 +39859,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22061,7 +39884,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22070,7 +39921,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D14", "location identifier": "D14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -22089,7 +39944,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22108,7 +39969,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22117,7 +40006,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D15", "location identifier": "D15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -22136,7 +40029,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22155,7 +40054,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22164,7 +40091,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D16", "location identifier": "D16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -22183,7 +40114,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22202,7 +40139,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22211,7 +40176,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D17", "location identifier": "D17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -22230,7 +40199,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22249,7 +40224,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22258,7 +40261,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D18", "location identifier": "D18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -22277,7 +40284,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22296,7 +40309,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22305,7 +40346,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D19", "location identifier": "D19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -22324,7 +40369,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22343,7 +40394,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22352,7 +40431,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D20", "location identifier": "D20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -22371,7 +40454,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22390,7 +40479,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22399,7 +40516,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D21", "location identifier": "D21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -22418,7 +40539,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22437,7 +40564,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22446,7 +40601,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D22", "location identifier": "D22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -22465,7 +40624,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22484,7 +40649,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22493,7 +40686,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D23", "location identifier": "D23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -22512,7 +40709,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22531,7 +40734,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22540,7 +40771,11 @@ "sample identifier": "8/22/2023 10:57:39 AM D24", "location identifier": "D24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -22559,7 +40794,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22578,7 +40819,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22587,7 +40856,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -22606,7 +40879,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22625,7 +40904,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22634,7 +40941,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -22653,7 +40964,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22672,7 +40989,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22681,7 +41026,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -22700,7 +41049,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22719,7 +41074,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22728,7 +41111,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -22747,7 +41134,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22766,7 +41159,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22775,7 +41196,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -22794,7 +41219,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22813,7 +41244,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22822,7 +41281,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -22841,7 +41304,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22860,7 +41329,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22869,7 +41366,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -22888,7 +41389,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22907,7 +41414,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22916,7 +41451,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -22935,7 +41474,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -22954,7 +41499,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22963,7 +41536,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -22982,7 +41559,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23001,7 +41584,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23010,7 +41621,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -23029,7 +41644,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23048,7 +41669,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23057,7 +41706,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23076,7 +41729,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23095,7 +41754,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23104,7 +41791,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23123,7 +41814,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23142,7 +41839,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23151,7 +41876,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E13", "location identifier": "E13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23170,7 +41899,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23189,7 +41924,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23198,7 +41961,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E14", "location identifier": "E14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23217,7 +41984,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23236,7 +42009,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23245,7 +42046,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E15", "location identifier": "E15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -23264,7 +42069,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23283,7 +42094,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23292,7 +42131,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E16", "location identifier": "E16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -23311,7 +42154,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23330,7 +42179,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23339,7 +42216,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E17", "location identifier": "E17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -23358,7 +42239,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23377,7 +42264,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23386,7 +42301,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E18", "location identifier": "E18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23405,7 +42324,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23424,7 +42349,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23433,7 +42386,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E19", "location identifier": "E19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23452,7 +42409,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23471,7 +42434,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23480,7 +42471,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E20", "location identifier": "E20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -23499,7 +42494,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23518,7 +42519,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23527,7 +42556,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E21", "location identifier": "E21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23546,7 +42579,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23565,7 +42604,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23574,7 +42641,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E22", "location identifier": "E22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -23593,7 +42664,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23612,7 +42689,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23621,7 +42726,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E23", "location identifier": "E23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23640,7 +42749,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23659,7 +42774,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23668,7 +42811,11 @@ "sample identifier": "8/22/2023 10:57:39 AM E24", "location identifier": "E24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23687,7 +42834,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23706,7 +42859,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23715,7 +42896,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -23734,7 +42919,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23753,7 +42944,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23762,7 +42981,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -23781,7 +43004,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23800,7 +43029,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23809,7 +43066,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23828,7 +43089,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23847,7 +43114,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23856,7 +43151,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23875,7 +43174,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23894,7 +43199,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23903,7 +43236,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23922,7 +43259,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23941,7 +43284,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23950,7 +43321,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -23969,7 +43344,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -23988,7 +43369,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23997,7 +43406,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -24016,7 +43429,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24035,7 +43454,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24044,7 +43491,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -24063,7 +43514,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24082,7 +43539,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24091,7 +43576,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -24110,7 +43599,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24129,7 +43624,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24138,7 +43661,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24157,7 +43684,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24176,7 +43709,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24185,7 +43746,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -24204,7 +43769,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24223,7 +43794,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24232,7 +43831,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -24251,7 +43854,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24270,7 +43879,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24279,7 +43916,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F13", "location identifier": "F13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24298,7 +43939,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24317,7 +43964,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24326,7 +44001,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F14", "location identifier": "F14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24345,7 +44024,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24364,7 +44049,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24373,7 +44086,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F15", "location identifier": "F15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24392,7 +44109,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24411,7 +44134,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24420,7 +44171,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F16", "location identifier": "F16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24439,7 +44194,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24458,7 +44219,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24467,7 +44256,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F17", "location identifier": "F17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24486,7 +44279,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24505,7 +44304,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24514,7 +44341,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F18", "location identifier": "F18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24533,7 +44364,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24552,7 +44389,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24561,7 +44426,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F19", "location identifier": "F19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -24580,7 +44449,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24599,7 +44474,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24608,7 +44511,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F20", "location identifier": "F20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24627,7 +44534,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24646,7 +44559,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24655,7 +44596,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F21", "location identifier": "F21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24674,7 +44619,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24693,7 +44644,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24702,7 +44681,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F22", "location identifier": "F22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24721,7 +44704,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24740,7 +44729,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24749,7 +44766,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F23", "location identifier": "F23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24768,7 +44789,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24787,7 +44814,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24796,7 +44851,11 @@ "sample identifier": "8/22/2023 10:57:39 AM F24", "location identifier": "F24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -24815,7 +44874,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24834,7 +44899,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24843,7 +44936,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -24862,7 +44959,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24881,7 +44984,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24890,7 +45021,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -24909,7 +45044,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24928,7 +45069,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24937,7 +45106,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -24956,7 +45129,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -24975,7 +45154,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24984,7 +45191,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25003,7 +45214,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25022,7 +45239,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25031,7 +45276,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -25050,7 +45299,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25069,7 +45324,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25078,7 +45361,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -25097,7 +45384,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25116,7 +45409,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25125,7 +45446,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -25144,7 +45469,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25163,7 +45494,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25172,7 +45531,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -25191,7 +45554,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25210,7 +45579,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25219,7 +45616,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -25238,7 +45639,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25257,7 +45664,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25266,7 +45701,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -25285,7 +45724,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25304,7 +45749,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25313,7 +45786,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25332,7 +45809,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25351,7 +45834,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25360,7 +45871,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25379,7 +45894,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25398,7 +45919,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25407,7 +45956,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G13", "location identifier": "G13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -25426,7 +45979,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25445,7 +46004,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25454,7 +46041,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G14", "location identifier": "G14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25473,7 +46064,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25492,7 +46089,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25501,7 +46126,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G15", "location identifier": "G15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25520,7 +46149,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25539,7 +46174,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25548,7 +46211,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G16", "location identifier": "G16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25567,7 +46234,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25586,7 +46259,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25595,7 +46296,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G17", "location identifier": "G17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25614,7 +46319,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25633,7 +46344,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25642,7 +46381,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G18", "location identifier": "G18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -25661,7 +46404,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25680,7 +46429,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25689,7 +46466,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G19", "location identifier": "G19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25708,7 +46489,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25727,7 +46514,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25736,7 +46551,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G20", "location identifier": "G20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25755,7 +46574,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25774,7 +46599,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25783,7 +46636,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G21", "location identifier": "G21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -25802,7 +46659,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25821,7 +46684,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25830,7 +46721,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G22", "location identifier": "G22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25849,7 +46744,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25868,7 +46769,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25877,7 +46806,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G23", "location identifier": "G23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -25896,7 +46829,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25915,7 +46854,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25924,7 +46891,11 @@ "sample identifier": "8/22/2023 10:57:39 AM G24", "location identifier": "G24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25943,7 +46914,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -25962,7 +46939,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25971,7 +46976,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -25990,7 +46999,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26009,7 +47024,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26018,7 +47061,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -26037,7 +47084,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26056,7 +47109,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26065,7 +47146,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -26084,7 +47169,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26103,7 +47194,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26112,7 +47231,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -26131,7 +47254,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26150,7 +47279,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26159,7 +47316,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -26178,7 +47339,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26197,7 +47364,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26206,7 +47401,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -26225,7 +47424,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26244,7 +47449,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26253,7 +47486,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -26272,7 +47509,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26291,7 +47534,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26300,7 +47571,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -26319,7 +47594,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26338,7 +47619,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26347,7 +47656,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -26366,7 +47679,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26385,7 +47704,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26394,7 +47741,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -26413,7 +47764,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26432,7 +47789,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26441,7 +47826,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -26460,7 +47849,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26479,7 +47874,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26488,7 +47911,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -26507,7 +47934,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26526,7 +47959,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26535,7 +47996,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H13", "location identifier": "H13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -26554,7 +48019,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26573,7 +48044,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26582,7 +48081,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H14", "location identifier": "H14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -26601,7 +48104,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26620,7 +48129,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26629,7 +48166,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H15", "location identifier": "H15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -26648,7 +48189,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26667,7 +48214,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26676,7 +48251,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H16", "location identifier": "H16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -26695,7 +48274,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26714,7 +48299,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26723,7 +48336,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H17", "location identifier": "H17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -26742,7 +48359,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26761,7 +48384,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26770,7 +48421,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H18", "location identifier": "H18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -26789,7 +48444,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26808,7 +48469,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26817,7 +48506,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H19", "location identifier": "H19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -26836,7 +48529,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26855,7 +48554,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26864,7 +48591,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H20", "location identifier": "H20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -26883,7 +48614,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26902,7 +48639,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26911,7 +48676,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H21", "location identifier": "H21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -26930,7 +48699,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26949,7 +48724,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26958,7 +48761,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H22", "location identifier": "H22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -26977,7 +48784,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -26996,7 +48809,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27005,7 +48846,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H23", "location identifier": "H23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -27024,7 +48869,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27043,7 +48894,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27052,7 +48931,11 @@ "sample identifier": "8/22/2023 10:57:39 AM H24", "location identifier": "H24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -27071,7 +48954,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27090,7 +48979,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27099,7 +49016,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I1", "location identifier": "I1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -27118,7 +49039,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27137,7 +49064,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27146,7 +49101,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I2", "location identifier": "I2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -27165,7 +49124,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27184,7 +49149,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27193,7 +49186,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I3", "location identifier": "I3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -27212,7 +49209,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27231,7 +49234,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27240,7 +49271,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I4", "location identifier": "I4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -27259,7 +49294,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27278,7 +49319,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27287,7 +49356,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I5", "location identifier": "I5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -27306,7 +49379,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27325,7 +49404,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27334,7 +49441,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I6", "location identifier": "I6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -27353,7 +49464,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27372,7 +49489,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27381,7 +49526,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I7", "location identifier": "I7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -27400,7 +49549,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27419,7 +49574,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27428,7 +49611,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I8", "location identifier": "I8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -27447,7 +49634,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27466,7 +49659,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27475,7 +49696,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I9", "location identifier": "I9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -27494,7 +49719,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27513,7 +49744,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27522,7 +49781,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I10", "location identifier": "I10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -27541,7 +49804,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27560,7 +49829,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27569,7 +49866,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I11", "location identifier": "I11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -27588,7 +49889,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27607,7 +49914,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27616,7 +49951,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I12", "location identifier": "I12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -27635,7 +49974,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27654,7 +49999,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27663,7 +50036,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I13", "location identifier": "I13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -27682,7 +50059,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27701,7 +50084,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27710,7 +50121,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I14", "location identifier": "I14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -27729,7 +50144,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27748,7 +50169,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27757,7 +50206,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I15", "location identifier": "I15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -27776,7 +50229,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27795,7 +50254,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27804,7 +50291,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I16", "location identifier": "I16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -27823,7 +50314,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27842,7 +50339,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27851,7 +50376,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I17", "location identifier": "I17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -27870,7 +50399,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27889,7 +50424,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27898,7 +50461,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I18", "location identifier": "I18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -27917,7 +50484,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27936,7 +50509,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27945,7 +50546,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I19", "location identifier": "I19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -27964,7 +50569,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -27983,7 +50594,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27992,7 +50631,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I20", "location identifier": "I20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28011,7 +50654,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28030,7 +50679,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28039,7 +50716,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I21", "location identifier": "I21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28058,7 +50739,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28077,7 +50764,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28086,7 +50801,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I22", "location identifier": "I22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28105,7 +50824,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28124,7 +50849,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28133,7 +50886,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I23", "location identifier": "I23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28152,7 +50909,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28171,7 +50934,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28180,7 +50971,11 @@ "sample identifier": "8/22/2023 10:57:39 AM I24", "location identifier": "I24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28199,7 +50994,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28218,7 +51019,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28227,7 +51056,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J1", "location identifier": "J1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28246,7 +51079,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28265,7 +51104,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28274,7 +51141,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J2", "location identifier": "J2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -28293,7 +51164,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28312,7 +51189,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28321,7 +51226,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J3", "location identifier": "J3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28340,7 +51249,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28359,7 +51274,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28368,7 +51311,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J4", "location identifier": "J4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -28387,7 +51334,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28406,7 +51359,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28415,7 +51396,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J5", "location identifier": "J5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -28434,7 +51419,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28453,7 +51444,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28462,7 +51481,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J6", "location identifier": "J6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -28481,7 +51504,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28500,7 +51529,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28509,7 +51566,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J7", "location identifier": "J7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28528,7 +51589,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28547,7 +51614,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28556,7 +51651,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J8", "location identifier": "J8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28575,7 +51674,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28594,7 +51699,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28603,7 +51736,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J9", "location identifier": "J9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28622,7 +51759,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28641,7 +51784,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28650,7 +51821,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J10", "location identifier": "J10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28669,7 +51844,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28688,7 +51869,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28697,7 +51906,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J11", "location identifier": "J11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -28716,7 +51929,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28735,7 +51954,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28744,7 +51991,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J12", "location identifier": "J12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28763,7 +52014,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28782,7 +52039,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28791,7 +52076,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J13", "location identifier": "J13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28810,7 +52099,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28829,7 +52124,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28838,7 +52161,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J14", "location identifier": "J14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28857,7 +52184,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28876,7 +52209,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28885,7 +52246,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J15", "location identifier": "J15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28904,7 +52269,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28923,7 +52294,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28932,7 +52331,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J16", "location identifier": "J16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28951,7 +52354,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -28970,7 +52379,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28979,7 +52416,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J17", "location identifier": "J17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -28998,7 +52439,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29017,7 +52464,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29026,7 +52501,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J18", "location identifier": "J18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -29045,7 +52524,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29064,7 +52549,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29073,7 +52586,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J19", "location identifier": "J19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -29092,7 +52609,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29111,7 +52634,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29120,7 +52671,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J20", "location identifier": "J20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -29139,7 +52694,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29158,7 +52719,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29167,7 +52756,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J21", "location identifier": "J21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -29186,7 +52779,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29205,7 +52804,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29214,7 +52841,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J22", "location identifier": "J22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -29233,7 +52864,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29252,7 +52889,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29261,7 +52926,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J23", "location identifier": "J23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -29280,7 +52949,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29299,7 +52974,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29308,7 +53011,11 @@ "sample identifier": "8/22/2023 10:57:39 AM J24", "location identifier": "J24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -29327,7 +53034,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29346,7 +53059,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29355,7 +53096,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K1", "location identifier": "K1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -29374,7 +53119,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29393,7 +53144,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29402,7 +53181,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K2", "location identifier": "K2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -29421,7 +53204,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29440,7 +53229,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29449,7 +53266,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K3", "location identifier": "K3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -29468,7 +53289,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29487,7 +53314,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29496,7 +53351,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K4", "location identifier": "K4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -29515,7 +53374,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29534,7 +53399,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29543,7 +53436,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K5", "location identifier": "K5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -29562,7 +53459,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29581,7 +53484,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29590,7 +53521,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K6", "location identifier": "K6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -29609,7 +53544,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29628,7 +53569,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29637,7 +53606,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K7", "location identifier": "K7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -29656,7 +53629,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29675,7 +53654,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29684,7 +53691,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K8", "location identifier": "K8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -29703,7 +53714,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29722,7 +53739,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29731,7 +53776,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K9", "location identifier": "K9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -29750,7 +53799,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29769,7 +53824,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29778,7 +53861,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K10", "location identifier": "K10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -29797,7 +53884,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29816,7 +53909,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29825,7 +53946,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K11", "location identifier": "K11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -29844,7 +53969,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29863,7 +53994,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29872,7 +54031,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K12", "location identifier": "K12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -29891,7 +54054,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29910,7 +54079,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29919,7 +54116,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K13", "location identifier": "K13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -29938,7 +54139,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -29957,7 +54164,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29966,7 +54201,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K14", "location identifier": "K14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -29985,7 +54224,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30004,7 +54249,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30013,7 +54286,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K15", "location identifier": "K15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -30032,7 +54309,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30051,7 +54334,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30060,7 +54371,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K16", "location identifier": "K16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -30079,7 +54394,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30098,7 +54419,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30107,7 +54456,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K17", "location identifier": "K17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -30126,7 +54479,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30145,7 +54504,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30154,7 +54541,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K18", "location identifier": "K18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -30173,7 +54564,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30192,7 +54589,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30201,7 +54626,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K19", "location identifier": "K19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -30220,7 +54649,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30239,7 +54674,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30248,7 +54711,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K20", "location identifier": "K20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -30267,7 +54734,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30286,7 +54759,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30295,7 +54796,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K21", "location identifier": "K21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -30314,7 +54819,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30333,7 +54844,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30342,7 +54881,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K22", "location identifier": "K22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -30361,7 +54904,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30380,7 +54929,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30389,7 +54966,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K23", "location identifier": "K23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -30408,7 +54989,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30427,7 +55014,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30436,7 +55051,11 @@ "sample identifier": "8/22/2023 10:57:39 AM K24", "location identifier": "K24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -30455,7 +55074,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30474,7 +55099,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30483,7 +55136,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L1", "location identifier": "L1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -30502,7 +55159,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30521,7 +55184,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30530,7 +55221,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L2", "location identifier": "L2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -30549,7 +55244,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30568,7 +55269,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30577,7 +55306,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L3", "location identifier": "L3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -30596,7 +55329,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30615,7 +55354,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30624,7 +55391,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L4", "location identifier": "L4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -30643,7 +55414,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30662,7 +55439,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30671,7 +55476,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L5", "location identifier": "L5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -30690,7 +55499,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30709,7 +55524,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30718,7 +55561,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L6", "location identifier": "L6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -30737,7 +55584,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30756,7 +55609,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30765,7 +55646,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L7", "location identifier": "L7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -30784,7 +55669,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30803,7 +55694,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30812,7 +55731,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L8", "location identifier": "L8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -30831,7 +55754,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30850,7 +55779,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30859,7 +55816,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L9", "location identifier": "L9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -30878,7 +55839,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30897,7 +55864,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30906,7 +55901,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L10", "location identifier": "L10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -30925,7 +55924,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30944,7 +55949,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30953,7 +55986,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L11", "location identifier": "L11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -30972,7 +56009,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -30991,7 +56034,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31000,7 +56071,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L12", "location identifier": "L12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31019,7 +56094,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31038,7 +56119,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31047,7 +56156,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L13", "location identifier": "L13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31066,7 +56179,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31085,7 +56204,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31094,7 +56241,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L14", "location identifier": "L14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -31113,7 +56264,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31132,7 +56289,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31141,7 +56326,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L15", "location identifier": "L15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -31160,7 +56349,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31179,7 +56374,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31188,7 +56411,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L16", "location identifier": "L16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31207,7 +56434,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31226,7 +56459,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31235,7 +56496,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L17", "location identifier": "L17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -31254,7 +56519,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31273,7 +56544,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31282,7 +56581,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L18", "location identifier": "L18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31301,7 +56604,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31320,7 +56629,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31329,7 +56666,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L19", "location identifier": "L19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -31348,7 +56689,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31367,7 +56714,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31376,7 +56751,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L20", "location identifier": "L20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31395,7 +56774,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31414,7 +56799,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31423,7 +56836,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L21", "location identifier": "L21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -31442,7 +56859,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31461,7 +56884,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31470,7 +56921,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L22", "location identifier": "L22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31489,7 +56944,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31508,7 +56969,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31517,7 +57006,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L23", "location identifier": "L23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31536,7 +57029,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31555,7 +57054,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31564,7 +57091,11 @@ "sample identifier": "8/22/2023 10:57:39 AM L24", "location identifier": "L24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -31583,7 +57114,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31602,7 +57139,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31611,7 +57176,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M1", "location identifier": "M1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -31630,7 +57199,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31649,7 +57224,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31658,7 +57261,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M2", "location identifier": "M2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31677,7 +57284,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31696,7 +57309,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31705,7 +57346,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M3", "location identifier": "M3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31724,7 +57369,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31743,7 +57394,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31752,7 +57431,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M4", "location identifier": "M4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31771,7 +57454,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31790,7 +57479,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31799,7 +57516,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M5", "location identifier": "M5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31818,7 +57539,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31837,7 +57564,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31846,7 +57601,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M6", "location identifier": "M6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -31865,7 +57624,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31884,7 +57649,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31893,7 +57686,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M7", "location identifier": "M7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -31912,7 +57709,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31931,7 +57734,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31940,7 +57771,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M8", "location identifier": "M8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -31959,7 +57794,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -31978,7 +57819,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31987,7 +57856,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M9", "location identifier": "M9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -32006,7 +57879,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32025,7 +57904,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32034,7 +57941,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M10", "location identifier": "M10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -32053,7 +57964,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32072,7 +57989,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32081,7 +58026,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M11", "location identifier": "M11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -32100,7 +58049,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32119,7 +58074,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32128,7 +58111,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M12", "location identifier": "M12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32147,7 +58134,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32166,7 +58159,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32175,7 +58196,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M13", "location identifier": "M13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32194,7 +58219,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32213,7 +58244,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32222,7 +58281,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M14", "location identifier": "M14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -32241,7 +58304,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32260,7 +58329,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32269,7 +58366,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M15", "location identifier": "M15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32288,7 +58389,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32307,7 +58414,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32316,7 +58451,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M16", "location identifier": "M16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32335,7 +58474,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32354,7 +58499,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32363,7 +58536,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M17", "location identifier": "M17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -32382,7 +58559,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32401,7 +58584,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32410,7 +58621,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M18", "location identifier": "M18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32429,7 +58644,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32448,7 +58669,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32457,7 +58706,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M19", "location identifier": "M19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32476,7 +58729,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32495,7 +58754,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32504,7 +58791,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M20", "location identifier": "M20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32523,7 +58814,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32542,7 +58839,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32551,7 +58876,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M21", "location identifier": "M21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -32570,7 +58899,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32589,7 +58924,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32598,7 +58961,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M22", "location identifier": "M22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32617,7 +58984,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32636,7 +59009,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32645,7 +59046,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M23", "location identifier": "M23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32664,7 +59069,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32683,7 +59094,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32692,7 +59131,11 @@ "sample identifier": "8/22/2023 10:57:39 AM M24", "location identifier": "M24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -32711,7 +59154,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32730,7 +59179,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32739,7 +59216,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N1", "location identifier": "N1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32758,7 +59239,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32777,7 +59264,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32786,7 +59301,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N2", "location identifier": "N2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -32805,7 +59324,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32824,7 +59349,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32833,7 +59386,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N3", "location identifier": "N3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -32852,7 +59409,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32871,7 +59434,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32880,7 +59471,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N4", "location identifier": "N4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32899,7 +59494,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32918,7 +59519,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32927,7 +59556,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N5", "location identifier": "N5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -32946,7 +59579,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -32965,7 +59604,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32974,7 +59641,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N6", "location identifier": "N6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -32993,7 +59664,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33012,7 +59689,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33021,7 +59726,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N7", "location identifier": "N7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33040,7 +59749,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33059,7 +59774,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33068,7 +59811,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N8", "location identifier": "N8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -33087,7 +59834,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33106,7 +59859,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33115,7 +59896,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N9", "location identifier": "N9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33134,7 +59919,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33153,7 +59944,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33162,7 +59981,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N10", "location identifier": "N10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -33181,7 +60004,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33200,7 +60029,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33209,7 +60066,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N11", "location identifier": "N11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33228,7 +60089,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33247,7 +60114,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33256,7 +60151,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N12", "location identifier": "N12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -33275,7 +60174,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33294,7 +60199,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33303,7 +60236,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N13", "location identifier": "N13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33322,7 +60259,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33341,7 +60284,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33350,7 +60321,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N14", "location identifier": "N14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33369,7 +60344,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33388,7 +60369,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33397,7 +60406,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N15", "location identifier": "N15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -33416,7 +60429,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33435,7 +60454,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33444,7 +60491,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N16", "location identifier": "N16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -33463,7 +60514,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33482,7 +60539,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33491,7 +60576,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N17", "location identifier": "N17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -33510,7 +60599,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33529,7 +60624,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33538,7 +60661,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N18", "location identifier": "N18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33557,7 +60684,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33576,7 +60709,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33585,7 +60746,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N19", "location identifier": "N19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -33604,7 +60769,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33623,7 +60794,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33632,7 +60831,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N20", "location identifier": "N20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33651,7 +60854,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33670,7 +60879,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33679,7 +60916,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N21", "location identifier": "N21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -33698,7 +60939,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33717,7 +60964,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33726,7 +61001,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N22", "location identifier": "N22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33745,7 +61024,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33764,7 +61049,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33773,7 +61086,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N23", "location identifier": "N23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33792,7 +61109,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33811,7 +61134,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33820,7 +61171,11 @@ "sample identifier": "8/22/2023 10:57:39 AM N24", "location identifier": "N24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33839,7 +61194,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33858,7 +61219,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33867,7 +61256,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O1", "location identifier": "O1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33886,7 +61279,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33905,7 +61304,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33914,7 +61341,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O2", "location identifier": "O2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33933,7 +61364,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33952,7 +61389,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33961,7 +61426,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O3", "location identifier": "O3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -33980,7 +61449,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -33999,7 +61474,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34008,7 +61511,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O4", "location identifier": "O4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -34027,7 +61534,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34046,7 +61559,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34055,7 +61596,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O5", "location identifier": "O5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34074,7 +61619,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34093,7 +61644,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34102,7 +61681,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O6", "location identifier": "O6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34121,7 +61704,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34140,7 +61729,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34149,7 +61766,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O7", "location identifier": "O7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -34168,7 +61789,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34187,7 +61814,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34196,7 +61851,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O8", "location identifier": "O8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34215,7 +61874,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34234,7 +61899,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34243,7 +61936,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O9", "location identifier": "O9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -34262,7 +61959,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34281,7 +61984,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34290,7 +62021,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O10", "location identifier": "O10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34309,7 +62044,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34328,7 +62069,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34337,7 +62106,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O11", "location identifier": "O11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34356,7 +62129,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34375,7 +62154,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34384,7 +62191,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O12", "location identifier": "O12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34403,7 +62214,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34422,7 +62239,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34431,7 +62276,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O13", "location identifier": "O13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -34450,7 +62299,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34469,7 +62324,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34478,7 +62361,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O14", "location identifier": "O14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -34497,7 +62384,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34516,7 +62409,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34525,7 +62446,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O15", "location identifier": "O15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34544,7 +62469,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34563,7 +62494,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34572,7 +62531,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O16", "location identifier": "O16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34591,7 +62554,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34610,7 +62579,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34619,7 +62616,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O17", "location identifier": "O17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -34638,7 +62639,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34657,7 +62664,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34666,7 +62701,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O18", "location identifier": "O18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34685,7 +62724,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34704,7 +62749,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34713,7 +62786,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O19", "location identifier": "O19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -34732,7 +62809,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34751,7 +62834,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34760,7 +62871,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O20", "location identifier": "O20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -34779,7 +62894,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34798,7 +62919,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34807,7 +62956,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O21", "location identifier": "O21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34826,7 +62979,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34845,7 +63004,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34854,7 +63041,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O22", "location identifier": "O22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34873,7 +63064,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34892,7 +63089,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34901,7 +63126,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O23", "location identifier": "O23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -34920,7 +63149,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34939,7 +63174,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34948,7 +63211,11 @@ "sample identifier": "8/22/2023 10:57:39 AM O24", "location identifier": "O24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -34967,7 +63234,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -34986,7 +63259,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -34995,7 +63296,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P1", "location identifier": "P1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -35014,7 +63319,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35033,7 +63344,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35042,7 +63381,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P2", "location identifier": "P2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -35061,7 +63404,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35080,7 +63429,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35089,7 +63466,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P3", "location identifier": "P3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -35108,7 +63489,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35127,7 +63514,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35136,7 +63551,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P4", "location identifier": "P4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -35155,7 +63574,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35174,7 +63599,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35183,7 +63636,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P5", "location identifier": "P5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -35202,7 +63659,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35221,7 +63684,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35230,7 +63721,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P6", "location identifier": "P6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -35249,7 +63744,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35268,7 +63769,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35277,7 +63806,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P7", "location identifier": "P7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -35296,7 +63829,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35315,7 +63854,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35324,7 +63891,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P8", "location identifier": "P8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -35343,7 +63914,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35362,7 +63939,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35371,7 +63976,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P9", "location identifier": "P9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -35390,7 +63999,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35409,7 +64024,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35418,7 +64061,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P10", "location identifier": "P10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 0, @@ -35437,7 +64084,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35456,7 +64109,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35465,7 +64146,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P11", "location identifier": "P11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -35484,7 +64169,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35503,7 +64194,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35512,7 +64231,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P12", "location identifier": "P12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -35531,7 +64254,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35550,7 +64279,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35559,7 +64316,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P13", "location identifier": "P13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 12, @@ -35578,7 +64339,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35597,7 +64364,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35606,7 +64401,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P14", "location identifier": "P14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -35625,7 +64424,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35644,7 +64449,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35653,7 +64486,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P15", "location identifier": "P15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -35672,7 +64509,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35691,7 +64534,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35700,7 +64571,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P16", "location identifier": "P16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -35719,7 +64594,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35738,7 +64619,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35747,7 +64656,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P17", "location identifier": "P17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -35766,7 +64679,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35785,7 +64704,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35794,7 +64741,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P18", "location identifier": "P18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -35813,7 +64764,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35832,7 +64789,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35841,7 +64826,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P19", "location identifier": "P19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -35860,7 +64849,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35879,7 +64874,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35888,7 +64911,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P20", "location identifier": "P20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -35907,7 +64934,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35926,7 +64959,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35935,7 +64996,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P21", "location identifier": "P21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -35954,7 +65019,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -35973,7 +65044,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -35982,7 +65081,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P22", "location identifier": "P22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -36001,7 +65104,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -36020,7 +65129,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -36029,7 +65166,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P23", "location identifier": "P23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 8, @@ -36048,7 +65189,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } }, { @@ -36067,7 +65214,35 @@ "value": 180.0, "unit": "#" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.97, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.68, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.95, + "unit": "degC" + }, + "Humidity at start": { + "value": 44.2, + "unit": "%" + }, + "Humidity at end": { + "value": 43.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -36076,7 +65251,11 @@ "sample identifier": "8/22/2023 10:57:39 AM P24", "location identifier": "P24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:57:39 AM" + "well plate identifier": "8/22/2023 10:57:39 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "absorbance": { "value": 4, @@ -36095,7 +65274,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2899", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:54:07 AM", + "Assay Finished": "8/22/2023 10:59:17 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:59:18 AM" + } } } ], @@ -42637,7 +71822,7 @@ "file name": "PE_Envision_absorbance_example01.csv", "UNC path": "tests/parsers/perkin_elmer_envision/testdata/PE_Envision_absorbance_example01.csv", "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.80", + "ASM converter version": "0.1.105", "software name": "EnVision Workstation", "software version": "1.14.3049.1193" }, diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_extra_espaces.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_extra_espaces.json index f8ad358ebe..c3d0f3b9f9 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_extra_espaces.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_extra_espaces.json @@ -35,6 +35,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -44,7 +72,12 @@ "sample identifier": "Plate 1 A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0, + "Name of the plate type": "cisbio 96well low volume" + } }, "compartment temperature": { "value": 23.17, @@ -85,6 +118,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -94,7 +155,11 @@ "sample identifier": "Plate 1 A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -113,7 +178,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -149,6 +220,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -158,7 +257,11 @@ "sample identifier": "Plate 1 A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -199,6 +302,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -208,7 +339,11 @@ "sample identifier": "Plate 1 A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -227,7 +362,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -263,6 +404,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -272,7 +441,11 @@ "sample identifier": "Plate 1 A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -313,6 +486,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -322,7 +523,11 @@ "sample identifier": "Plate 1 A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -341,7 +546,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -377,6 +588,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -386,7 +625,11 @@ "sample identifier": "Plate 1 A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -427,6 +670,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -436,7 +707,11 @@ "sample identifier": "Plate 1 A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -455,7 +730,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -491,6 +772,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -500,7 +809,11 @@ "sample identifier": "Plate 1 A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -541,6 +854,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -550,7 +891,11 @@ "sample identifier": "Plate 1 A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -569,7 +914,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -605,6 +956,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -614,7 +993,11 @@ "sample identifier": "Plate 1 A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -655,6 +1038,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -664,7 +1075,11 @@ "sample identifier": "Plate 1 A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -683,7 +1098,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -719,6 +1140,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -728,7 +1177,11 @@ "sample identifier": "Plate 1 B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -769,6 +1222,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -778,7 +1259,11 @@ "sample identifier": "Plate 1 B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -797,7 +1282,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -833,6 +1324,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -842,7 +1361,11 @@ "sample identifier": "Plate 1 B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -883,6 +1406,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -892,7 +1443,11 @@ "sample identifier": "Plate 1 B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -911,7 +1466,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -947,6 +1508,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -956,7 +1545,11 @@ "sample identifier": "Plate 1 B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -997,6 +1590,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1006,7 +1627,11 @@ "sample identifier": "Plate 1 B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1025,7 +1650,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -1061,6 +1692,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1070,7 +1729,11 @@ "sample identifier": "Plate 1 B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1111,6 +1774,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1120,7 +1811,11 @@ "sample identifier": "Plate 1 B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1139,7 +1834,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -1175,6 +1876,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1184,7 +1913,11 @@ "sample identifier": "Plate 1 B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1225,6 +1958,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1234,7 +1995,11 @@ "sample identifier": "Plate 1 B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1253,7 +2018,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -1289,6 +2060,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1298,7 +2097,11 @@ "sample identifier": "Plate 1 B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1339,6 +2142,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1348,7 +2179,11 @@ "sample identifier": "Plate 1 B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1367,7 +2202,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -1403,6 +2244,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1412,7 +2281,11 @@ "sample identifier": "Plate 1 C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1453,6 +2326,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1462,7 +2363,11 @@ "sample identifier": "Plate 1 C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1481,7 +2386,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -1517,6 +2428,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1526,7 +2465,11 @@ "sample identifier": "Plate 1 C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1567,6 +2510,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1576,7 +2547,11 @@ "sample identifier": "Plate 1 C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1595,7 +2570,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -1631,6 +2612,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1640,7 +2649,11 @@ "sample identifier": "Plate 1 C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1681,6 +2694,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1690,7 +2731,11 @@ "sample identifier": "Plate 1 C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1709,7 +2754,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -1745,6 +2796,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1754,7 +2833,11 @@ "sample identifier": "Plate 1 C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1795,6 +2878,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1804,7 +2915,11 @@ "sample identifier": "Plate 1 C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1823,7 +2938,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -1859,6 +2980,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1868,7 +3017,11 @@ "sample identifier": "Plate 1 C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1909,6 +3062,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1918,7 +3099,11 @@ "sample identifier": "Plate 1 C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1937,7 +3122,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -1973,6 +3164,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -1982,7 +3201,11 @@ "sample identifier": "Plate 1 C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2023,6 +3246,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2032,7 +3283,11 @@ "sample identifier": "Plate 1 C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2051,7 +3306,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -2087,6 +3348,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2096,7 +3385,11 @@ "sample identifier": "Plate 1 D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2137,6 +3430,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2146,7 +3467,11 @@ "sample identifier": "Plate 1 D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2165,7 +3490,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -2201,6 +3532,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2210,7 +3569,11 @@ "sample identifier": "Plate 1 D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2251,6 +3614,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2260,7 +3651,11 @@ "sample identifier": "Plate 1 D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2279,7 +3674,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -2315,6 +3716,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2324,7 +3753,11 @@ "sample identifier": "Plate 1 D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2365,6 +3798,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2374,7 +3835,11 @@ "sample identifier": "Plate 1 D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2393,7 +3858,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -2429,6 +3900,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2438,7 +3937,11 @@ "sample identifier": "Plate 1 D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2479,6 +3982,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2488,7 +4019,11 @@ "sample identifier": "Plate 1 D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2507,7 +4042,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -2543,6 +4084,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2552,7 +4121,11 @@ "sample identifier": "Plate 1 D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2593,6 +4166,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2602,7 +4203,11 @@ "sample identifier": "Plate 1 D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2621,7 +4226,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -2657,6 +4268,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2666,7 +4305,11 @@ "sample identifier": "Plate 1 D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2707,6 +4350,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2716,7 +4387,11 @@ "sample identifier": "Plate 1 D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2735,7 +4410,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -2771,6 +4452,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2780,7 +4489,11 @@ "sample identifier": "Plate 1 E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2821,6 +4534,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2830,7 +4571,11 @@ "sample identifier": "Plate 1 E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2849,7 +4594,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -2885,6 +4636,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2894,7 +4673,11 @@ "sample identifier": "Plate 1 E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2935,6 +4718,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -2944,7 +4755,11 @@ "sample identifier": "Plate 1 E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2963,7 +4778,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -2999,6 +4820,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3008,7 +4857,11 @@ "sample identifier": "Plate 1 E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3049,6 +4902,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3058,7 +4939,11 @@ "sample identifier": "Plate 1 E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3077,7 +4962,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -3113,6 +5004,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3122,7 +5041,11 @@ "sample identifier": "Plate 1 E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3163,6 +5086,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3172,7 +5123,11 @@ "sample identifier": "Plate 1 E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3191,7 +5146,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -3227,6 +5188,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3236,7 +5225,11 @@ "sample identifier": "Plate 1 E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3277,6 +5270,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3286,7 +5307,11 @@ "sample identifier": "Plate 1 E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3305,7 +5330,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -3341,6 +5372,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3350,7 +5409,11 @@ "sample identifier": "Plate 1 E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3391,6 +5454,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3400,7 +5491,11 @@ "sample identifier": "Plate 1 E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3419,7 +5514,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -3455,6 +5556,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3464,7 +5593,11 @@ "sample identifier": "Plate 1 F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3505,6 +5638,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3514,7 +5675,11 @@ "sample identifier": "Plate 1 F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3533,7 +5698,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -3569,6 +5740,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3578,7 +5777,11 @@ "sample identifier": "Plate 1 F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3619,6 +5822,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3628,7 +5859,11 @@ "sample identifier": "Plate 1 F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3647,7 +5882,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -3683,6 +5924,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3692,7 +5961,11 @@ "sample identifier": "Plate 1 F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3733,6 +6006,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3742,7 +6043,11 @@ "sample identifier": "Plate 1 F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3761,7 +6066,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -3797,6 +6108,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3806,7 +6145,11 @@ "sample identifier": "Plate 1 F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3847,6 +6190,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3856,7 +6227,11 @@ "sample identifier": "Plate 1 F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3875,7 +6250,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -3911,6 +6292,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3920,7 +6329,11 @@ "sample identifier": "Plate 1 F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3961,6 +6374,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -3970,7 +6411,11 @@ "sample identifier": "Plate 1 F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3989,7 +6434,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -4025,6 +6476,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4034,7 +6513,11 @@ "sample identifier": "Plate 1 F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4075,6 +6558,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4084,7 +6595,11 @@ "sample identifier": "Plate 1 F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4103,7 +6618,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -4139,6 +6660,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4148,7 +6697,11 @@ "sample identifier": "Plate 1 G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4189,6 +6742,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4198,7 +6779,11 @@ "sample identifier": "Plate 1 G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4217,7 +6802,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -4253,6 +6844,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4262,7 +6881,11 @@ "sample identifier": "Plate 1 G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4303,6 +6926,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4312,7 +6963,11 @@ "sample identifier": "Plate 1 G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4331,7 +6986,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -4367,6 +7028,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4376,7 +7065,11 @@ "sample identifier": "Plate 1 G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4417,6 +7110,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4426,7 +7147,11 @@ "sample identifier": "Plate 1 G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4445,7 +7170,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -4481,6 +7212,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4490,7 +7249,11 @@ "sample identifier": "Plate 1 G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4531,6 +7294,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4540,7 +7331,11 @@ "sample identifier": "Plate 1 G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4559,7 +7354,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -4595,6 +7396,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4604,7 +7433,11 @@ "sample identifier": "Plate 1 G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4645,6 +7478,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4654,7 +7515,11 @@ "sample identifier": "Plate 1 G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4673,7 +7538,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -4709,6 +7580,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4718,7 +7617,11 @@ "sample identifier": "Plate 1 G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4759,6 +7662,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4768,7 +7699,11 @@ "sample identifier": "Plate 1 G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4787,7 +7722,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -4823,6 +7764,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4832,7 +7801,11 @@ "sample identifier": "Plate 1 H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4873,6 +7846,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4882,7 +7883,11 @@ "sample identifier": "Plate 1 H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4901,7 +7906,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -4937,6 +7948,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4946,7 +7985,11 @@ "sample identifier": "Plate 1 H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4987,6 +8030,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -4996,7 +8067,11 @@ "sample identifier": "Plate 1 H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5015,7 +8090,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -5051,6 +8132,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -5060,7 +8169,11 @@ "sample identifier": "Plate 1 H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5101,6 +8214,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -5110,7 +8251,11 @@ "sample identifier": "Plate 1 H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5129,7 +8274,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -5165,6 +8316,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -5174,7 +8353,11 @@ "sample identifier": "Plate 1 H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5215,6 +8398,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -5224,7 +8435,11 @@ "sample identifier": "Plate 1 H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5243,7 +8458,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -5279,6 +8500,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -5288,7 +8537,11 @@ "sample identifier": "Plate 1 H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5329,6 +8582,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -5338,7 +8619,11 @@ "sample identifier": "Plate 1 H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5357,7 +8642,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } }, { @@ -5393,6 +8684,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -5402,7 +8721,11 @@ "sample identifier": "Plate 1 H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5443,6 +8766,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 8.0, + "Number of columns": 12.0, + "Height of the plate": "12 mm" } } ] @@ -5452,7 +8803,11 @@ "sample identifier": "Plate 1 H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5471,7 +8826,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "10/13/2022 3:06:23 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Assay Exported": "10/13/2022 3:08:15 PM" + } } } ], @@ -6493,7 +9854,7 @@ "file name": "PE_Envision_extra_espaces.csv", "UNC path": "tests/parsers/perkin_elmer_envision/testdata/PE_Envision_extra_espaces.csv", "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.83", + "ASM converter version": "0.1.105", "software name": "EnVision Workstation", "software version": "1.14.3049.1193" }, diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example01.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example01.json index d7bdb80710..0126d0ea34 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example01.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example01.json @@ -35,6 +35,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -44,7 +72,12 @@ "sample identifier": "Plate 1 A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0, + "Name of the plate type": "cisbio 96well low volume" + } }, "compartment temperature": { "value": 23.17, @@ -85,6 +118,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -94,7 +155,11 @@ "sample identifier": "Plate 1 A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -113,7 +178,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -149,6 +220,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -158,7 +257,11 @@ "sample identifier": "Plate 1 A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -199,6 +302,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -208,7 +339,11 @@ "sample identifier": "Plate 1 A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -227,7 +362,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -263,6 +404,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -272,7 +441,11 @@ "sample identifier": "Plate 1 A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -313,6 +486,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -322,7 +523,11 @@ "sample identifier": "Plate 1 A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -341,7 +546,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -377,6 +588,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -386,7 +625,11 @@ "sample identifier": "Plate 1 A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -427,6 +670,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -436,7 +707,11 @@ "sample identifier": "Plate 1 A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -455,7 +730,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -491,6 +772,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -500,7 +809,11 @@ "sample identifier": "Plate 1 A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -541,6 +854,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -550,7 +891,11 @@ "sample identifier": "Plate 1 A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -569,7 +914,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -605,6 +956,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -614,7 +993,11 @@ "sample identifier": "Plate 1 A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -655,6 +1038,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -664,7 +1075,11 @@ "sample identifier": "Plate 1 A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -683,7 +1098,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -719,6 +1140,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -728,7 +1177,11 @@ "sample identifier": "Plate 1 B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -769,6 +1222,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -778,7 +1259,11 @@ "sample identifier": "Plate 1 B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -797,7 +1282,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -833,6 +1324,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -842,7 +1361,11 @@ "sample identifier": "Plate 1 B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -883,6 +1406,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -892,7 +1443,11 @@ "sample identifier": "Plate 1 B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -911,7 +1466,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -947,6 +1508,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -956,7 +1545,11 @@ "sample identifier": "Plate 1 B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -997,6 +1590,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1006,7 +1627,11 @@ "sample identifier": "Plate 1 B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1025,7 +1650,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -1061,6 +1692,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1070,7 +1729,11 @@ "sample identifier": "Plate 1 B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1111,6 +1774,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1120,7 +1811,11 @@ "sample identifier": "Plate 1 B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1139,7 +1834,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -1175,6 +1876,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1184,7 +1913,11 @@ "sample identifier": "Plate 1 B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1225,6 +1958,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1234,7 +1995,11 @@ "sample identifier": "Plate 1 B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1253,7 +2018,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -1289,6 +2060,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1298,7 +2097,11 @@ "sample identifier": "Plate 1 B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1339,6 +2142,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1348,7 +2179,11 @@ "sample identifier": "Plate 1 B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1367,7 +2202,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -1403,6 +2244,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1412,7 +2281,11 @@ "sample identifier": "Plate 1 C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1453,6 +2326,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1462,7 +2363,11 @@ "sample identifier": "Plate 1 C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1481,7 +2386,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -1517,6 +2428,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1526,7 +2465,11 @@ "sample identifier": "Plate 1 C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1567,6 +2510,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1576,7 +2547,11 @@ "sample identifier": "Plate 1 C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1595,7 +2570,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -1631,6 +2612,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1640,7 +2649,11 @@ "sample identifier": "Plate 1 C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1681,6 +2694,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1690,7 +2731,11 @@ "sample identifier": "Plate 1 C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1709,7 +2754,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -1745,6 +2796,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1754,7 +2833,11 @@ "sample identifier": "Plate 1 C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1795,6 +2878,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1804,7 +2915,11 @@ "sample identifier": "Plate 1 C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1823,7 +2938,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -1859,6 +2980,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1868,7 +3017,11 @@ "sample identifier": "Plate 1 C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1909,6 +3062,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1918,7 +3099,11 @@ "sample identifier": "Plate 1 C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1937,7 +3122,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -1973,6 +3164,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -1982,7 +3201,11 @@ "sample identifier": "Plate 1 C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2023,6 +3246,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2032,7 +3283,11 @@ "sample identifier": "Plate 1 C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2051,7 +3306,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -2087,6 +3348,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2096,7 +3385,11 @@ "sample identifier": "Plate 1 D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2137,6 +3430,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2146,7 +3467,11 @@ "sample identifier": "Plate 1 D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2165,7 +3490,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -2201,6 +3532,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2210,7 +3569,11 @@ "sample identifier": "Plate 1 D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2251,6 +3614,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2260,7 +3651,11 @@ "sample identifier": "Plate 1 D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2279,7 +3674,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -2315,6 +3716,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2324,7 +3753,11 @@ "sample identifier": "Plate 1 D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2365,6 +3798,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2374,7 +3835,11 @@ "sample identifier": "Plate 1 D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2393,7 +3858,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -2429,6 +3900,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2438,7 +3937,11 @@ "sample identifier": "Plate 1 D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2479,6 +3982,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2488,7 +4019,11 @@ "sample identifier": "Plate 1 D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2507,7 +4042,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -2543,6 +4084,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2552,7 +4121,11 @@ "sample identifier": "Plate 1 D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2593,6 +4166,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2602,7 +4203,11 @@ "sample identifier": "Plate 1 D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2621,7 +4226,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -2657,6 +4268,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2666,7 +4305,11 @@ "sample identifier": "Plate 1 D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2707,6 +4350,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2716,7 +4387,11 @@ "sample identifier": "Plate 1 D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2735,7 +4410,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -2771,6 +4452,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2780,7 +4489,11 @@ "sample identifier": "Plate 1 E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2821,6 +4534,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2830,7 +4571,11 @@ "sample identifier": "Plate 1 E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2849,7 +4594,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -2885,6 +4636,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2894,7 +4673,11 @@ "sample identifier": "Plate 1 E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2935,6 +4718,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -2944,7 +4755,11 @@ "sample identifier": "Plate 1 E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2963,7 +4778,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -2999,6 +4820,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3008,7 +4857,11 @@ "sample identifier": "Plate 1 E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3049,6 +4902,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3058,7 +4939,11 @@ "sample identifier": "Plate 1 E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3077,7 +4962,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -3113,6 +5004,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3122,7 +5041,11 @@ "sample identifier": "Plate 1 E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3163,6 +5086,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3172,7 +5123,11 @@ "sample identifier": "Plate 1 E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3191,7 +5146,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -3227,6 +5188,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3236,7 +5225,11 @@ "sample identifier": "Plate 1 E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3277,6 +5270,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3286,7 +5307,11 @@ "sample identifier": "Plate 1 E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3305,7 +5330,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -3341,6 +5372,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3350,7 +5409,11 @@ "sample identifier": "Plate 1 E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3391,6 +5454,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3400,7 +5491,11 @@ "sample identifier": "Plate 1 E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3419,7 +5514,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -3455,6 +5556,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3464,7 +5593,11 @@ "sample identifier": "Plate 1 F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3505,6 +5638,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3514,7 +5675,11 @@ "sample identifier": "Plate 1 F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3533,7 +5698,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -3569,6 +5740,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3578,7 +5777,11 @@ "sample identifier": "Plate 1 F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3619,6 +5822,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3628,7 +5859,11 @@ "sample identifier": "Plate 1 F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3647,7 +5882,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -3683,6 +5924,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3692,7 +5961,11 @@ "sample identifier": "Plate 1 F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3733,6 +6006,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3742,7 +6043,11 @@ "sample identifier": "Plate 1 F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3761,7 +6066,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -3797,6 +6108,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3806,7 +6145,11 @@ "sample identifier": "Plate 1 F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3847,6 +6190,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3856,7 +6227,11 @@ "sample identifier": "Plate 1 F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3875,7 +6250,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -3911,6 +6292,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3920,7 +6329,11 @@ "sample identifier": "Plate 1 F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3961,6 +6374,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -3970,7 +6411,11 @@ "sample identifier": "Plate 1 F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3989,7 +6434,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -4025,6 +6476,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4034,7 +6513,11 @@ "sample identifier": "Plate 1 F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4075,6 +6558,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4084,7 +6595,11 @@ "sample identifier": "Plate 1 F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4103,7 +6618,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -4139,6 +6660,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4148,7 +6697,11 @@ "sample identifier": "Plate 1 G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4189,6 +6742,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4198,7 +6779,11 @@ "sample identifier": "Plate 1 G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4217,7 +6802,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -4253,6 +6844,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4262,7 +6881,11 @@ "sample identifier": "Plate 1 G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4303,6 +6926,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4312,7 +6963,11 @@ "sample identifier": "Plate 1 G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4331,7 +6986,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -4367,6 +7028,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4376,7 +7065,11 @@ "sample identifier": "Plate 1 G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4417,6 +7110,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4426,7 +7147,11 @@ "sample identifier": "Plate 1 G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4445,7 +7170,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -4481,6 +7212,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4490,7 +7249,11 @@ "sample identifier": "Plate 1 G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4531,6 +7294,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4540,7 +7331,11 @@ "sample identifier": "Plate 1 G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4559,7 +7354,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -4595,6 +7396,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4604,7 +7433,11 @@ "sample identifier": "Plate 1 G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4645,6 +7478,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4654,7 +7515,11 @@ "sample identifier": "Plate 1 G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4673,7 +7538,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -4709,6 +7580,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4718,7 +7617,11 @@ "sample identifier": "Plate 1 G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4759,6 +7662,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4768,7 +7699,11 @@ "sample identifier": "Plate 1 G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4787,7 +7722,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -4823,6 +7764,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4832,7 +7801,11 @@ "sample identifier": "Plate 1 H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4873,6 +7846,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4882,7 +7883,11 @@ "sample identifier": "Plate 1 H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4901,7 +7906,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -4937,6 +7948,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4946,7 +7985,11 @@ "sample identifier": "Plate 1 H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4987,6 +8030,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -4996,7 +8067,11 @@ "sample identifier": "Plate 1 H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5015,7 +8090,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -5051,6 +8132,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -5060,7 +8169,11 @@ "sample identifier": "Plate 1 H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5101,6 +8214,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -5110,7 +8251,11 @@ "sample identifier": "Plate 1 H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5129,7 +8274,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -5165,6 +8316,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -5174,7 +8353,11 @@ "sample identifier": "Plate 1 H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5215,6 +8398,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -5224,7 +8435,11 @@ "sample identifier": "Plate 1 H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5243,7 +8458,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -5279,6 +8500,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -5288,7 +8537,11 @@ "sample identifier": "Plate 1 H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5329,6 +8582,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -5338,7 +8619,11 @@ "sample identifier": "Plate 1 H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5357,7 +8642,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } }, { @@ -5393,6 +8684,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -5402,7 +8721,11 @@ "sample identifier": "Plate 1 H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5443,6 +8766,34 @@ "excitation wavelength setting": { "value": 320.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.47, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.59, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Humidity at start": { + "value": 100.0, + "unit": "%" + }, + "Humidity at end": { + "value": 100.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 12.0, + "Number of rows": 8.0, + "Height of the plate": "12 mm" } } ] @@ -5452,7 +8803,11 @@ "sample identifier": "Plate 1 H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5471,7 +8826,13 @@ }, "analytical method identifier": "100302", "experimental data identifier": "3134", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "10/13/2022 3:08:15 PM", + "Assay Finished": "10/13/2022 3:08:15 PM", + "Protocol Name": "HTRF LASER Eu 665/620", + "Assay Started": "10/13/2022 3:06:23 PM" + } } } ], @@ -6493,7 +9854,7 @@ "file name": "PE_Envision_fluorescence_example01.csv", "UNC path": "tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example01.csv", "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.80", + "ASM converter version": "0.1.105", "software name": "EnVision Workstation", "software version": "1.14.3049.1193" }, diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example02.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example02.json index d3863ee386..22131419d3 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example02.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example02.json @@ -34,6 +34,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -43,7 +75,12 @@ "sample identifier": "Plate 1 A1", "location identifier": "A1", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0, + "Name of the plate type": "96 General" + } }, "fluorescence": { "value": 5230093, @@ -58,7 +95,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -93,6 +136,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -102,7 +177,11 @@ "sample identifier": "Plate 1 A2", "location identifier": "A2", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3034219, @@ -117,7 +196,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -152,6 +237,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -161,7 +278,11 @@ "sample identifier": "Plate 1 A3", "location identifier": "A3", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1871487, @@ -176,7 +297,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -211,6 +338,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -220,7 +379,11 @@ "sample identifier": "Plate 1 A4", "location identifier": "A4", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1134351, @@ -235,7 +398,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -270,6 +439,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -279,7 +480,11 @@ "sample identifier": "Plate 1 A5", "location identifier": "A5", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 604299, @@ -294,7 +499,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -329,6 +540,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -338,7 +581,11 @@ "sample identifier": "Plate 1 A6", "location identifier": "A6", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 331434, @@ -353,7 +600,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -388,6 +641,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -397,7 +682,11 @@ "sample identifier": "Plate 1 A7", "location identifier": "A7", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 181415, @@ -412,7 +701,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -447,6 +742,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -456,7 +783,11 @@ "sample identifier": "Plate 1 A8", "location identifier": "A8", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 103760, @@ -471,7 +802,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -506,6 +843,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -515,7 +884,11 @@ "sample identifier": "Plate 1 B1", "location identifier": "B1", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5108090, @@ -530,7 +903,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -565,6 +944,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -574,7 +985,11 @@ "sample identifier": "Plate 1 B2", "location identifier": "B2", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3311363, @@ -589,7 +1004,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -624,6 +1045,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -633,7 +1086,11 @@ "sample identifier": "Plate 1 B3", "location identifier": "B3", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2237776, @@ -648,7 +1105,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -683,6 +1146,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -692,7 +1187,11 @@ "sample identifier": "Plate 1 B4", "location identifier": "B4", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1060821, @@ -707,7 +1206,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -742,6 +1247,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -751,7 +1288,11 @@ "sample identifier": "Plate 1 B5", "location identifier": "B5", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 570678, @@ -766,7 +1307,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -801,6 +1348,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -810,7 +1389,11 @@ "sample identifier": "Plate 1 B6", "location identifier": "B6", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 261958, @@ -825,7 +1408,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -860,6 +1449,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -869,7 +1490,11 @@ "sample identifier": "Plate 1 B7", "location identifier": "B7", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 187541, @@ -884,7 +1509,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -919,6 +1550,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -928,7 +1591,11 @@ "sample identifier": "Plate 1 B8", "location identifier": "B8", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 98556, @@ -943,7 +1610,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -978,6 +1651,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -987,7 +1692,11 @@ "sample identifier": "Plate 1 C1", "location identifier": "C1", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5075482, @@ -1002,7 +1711,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1037,6 +1752,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1046,7 +1793,11 @@ "sample identifier": "Plate 1 C2", "location identifier": "C2", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3619785, @@ -1061,7 +1812,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1096,6 +1853,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1105,7 +1894,11 @@ "sample identifier": "Plate 1 C3", "location identifier": "C3", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2353210, @@ -1120,7 +1913,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1155,6 +1954,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1164,7 +1995,11 @@ "sample identifier": "Plate 1 C4", "location identifier": "C4", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1548777, @@ -1179,7 +2014,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1214,6 +2055,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1223,7 +2096,11 @@ "sample identifier": "Plate 1 C5", "location identifier": "C5", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 852954, @@ -1238,7 +2115,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1273,6 +2156,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1282,7 +2197,11 @@ "sample identifier": "Plate 1 C6", "location identifier": "C6", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 491657, @@ -1297,7 +2216,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1332,6 +2257,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1341,7 +2298,11 @@ "sample identifier": "Plate 1 C7", "location identifier": "C7", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 238247, @@ -1356,7 +2317,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1391,6 +2358,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1400,7 +2399,11 @@ "sample identifier": "Plate 1 C8", "location identifier": "C8", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 131354, @@ -1415,7 +2418,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1450,6 +2459,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1459,7 +2500,11 @@ "sample identifier": "Plate 1 D1", "location identifier": "D1", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5129091, @@ -1474,7 +2519,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1509,6 +2560,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1518,7 +2601,11 @@ "sample identifier": "Plate 1 D2", "location identifier": "D2", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4046760, @@ -1533,7 +2620,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1568,6 +2661,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1577,7 +2702,11 @@ "sample identifier": "Plate 1 D3", "location identifier": "D3", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2789331, @@ -1592,7 +2721,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1627,6 +2762,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1636,7 +2803,11 @@ "sample identifier": "Plate 1 D4", "location identifier": "D4", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1542638, @@ -1651,7 +2822,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1686,6 +2863,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1695,7 +2904,11 @@ "sample identifier": "Plate 1 D5", "location identifier": "D5", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 747882, @@ -1710,7 +2923,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1745,6 +2964,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1754,7 +3005,11 @@ "sample identifier": "Plate 1 D6", "location identifier": "D6", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 393263, @@ -1769,7 +3024,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1804,6 +3065,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1813,7 +3106,11 @@ "sample identifier": "Plate 1 D7", "location identifier": "D7", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 226895, @@ -1828,7 +3125,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1863,6 +3166,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.63, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.7, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.32, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.22, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1872,7 +3207,11 @@ "sample identifier": "Plate 1 D8", "location identifier": "D8", "sample role type": "standard sample role", - "well plate identifier": "Plate 1" + "well plate identifier": "Plate 1", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 117932, @@ -1887,7 +3226,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1922,6 +3267,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1931,7 +3308,11 @@ "sample identifier": "Plate 2 A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4817678, @@ -1946,7 +3327,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -1981,6 +3368,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -1990,7 +3409,11 @@ "sample identifier": "Plate 2 A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3672440, @@ -2005,7 +3428,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2040,6 +3469,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2049,7 +3510,11 @@ "sample identifier": "Plate 2 A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4614004, @@ -2064,7 +3529,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2099,6 +3570,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2108,7 +3611,11 @@ "sample identifier": "Plate 2 A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3852433, @@ -2123,7 +3630,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2158,6 +3671,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2167,7 +3712,11 @@ "sample identifier": "Plate 2 A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5311807, @@ -2182,7 +3731,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2217,6 +3772,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2226,7 +3813,11 @@ "sample identifier": "Plate 2 A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3356249, @@ -2241,7 +3832,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2276,6 +3873,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2285,7 +3914,11 @@ "sample identifier": "Plate 2 A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4996682, @@ -2300,7 +3933,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2335,6 +3974,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2344,7 +4015,11 @@ "sample identifier": "Plate 2 A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4859545, @@ -2359,7 +4034,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2394,6 +4075,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2403,7 +4116,11 @@ "sample identifier": "Plate 2 A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5365877, @@ -2418,7 +4135,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2453,6 +4176,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2462,7 +4217,11 @@ "sample identifier": "Plate 2 A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5363195, @@ -2477,7 +4236,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2512,6 +4277,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2521,7 +4318,11 @@ "sample identifier": "Plate 2 A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5340513, @@ -2536,7 +4337,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2571,6 +4378,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2580,7 +4419,11 @@ "sample identifier": "Plate 2 A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 397881, @@ -2595,7 +4438,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2630,6 +4479,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2639,7 +4520,11 @@ "sample identifier": "Plate 2 B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5330484, @@ -2654,7 +4539,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2689,6 +4580,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2698,7 +4621,11 @@ "sample identifier": "Plate 2 B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2883838, @@ -2713,7 +4640,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2748,6 +4681,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2757,7 +4722,11 @@ "sample identifier": "Plate 2 B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4979157, @@ -2772,7 +4741,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2807,6 +4782,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2816,7 +4823,11 @@ "sample identifier": "Plate 2 B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5327334, @@ -2831,7 +4842,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2866,6 +4883,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2875,7 +4924,11 @@ "sample identifier": "Plate 2 B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5332067, @@ -2890,7 +4943,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2925,6 +4984,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2934,7 +5025,11 @@ "sample identifier": "Plate 2 B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5107159, @@ -2949,7 +5044,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -2984,6 +5085,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -2993,7 +5126,11 @@ "sample identifier": "Plate 2 B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4527599, @@ -3008,7 +5145,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3043,6 +5186,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3052,7 +5227,11 @@ "sample identifier": "Plate 2 B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5358457, @@ -3067,7 +5246,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3102,6 +5287,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3111,7 +5328,11 @@ "sample identifier": "Plate 2 B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5354762, @@ -3126,7 +5347,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3161,6 +5388,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3170,7 +5429,11 @@ "sample identifier": "Plate 2 B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5331036, @@ -3185,7 +5448,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3220,6 +5489,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3229,7 +5530,11 @@ "sample identifier": "Plate 2 B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5354779, @@ -3244,7 +5549,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3279,6 +5590,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3288,7 +5631,11 @@ "sample identifier": "Plate 2 B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5311483, @@ -3303,7 +5650,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3338,6 +5691,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3347,7 +5732,11 @@ "sample identifier": "Plate 2 C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4513977, @@ -3362,7 +5751,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3397,6 +5792,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3406,7 +5833,11 @@ "sample identifier": "Plate 2 C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4706274, @@ -3421,7 +5852,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3456,6 +5893,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3465,7 +5934,11 @@ "sample identifier": "Plate 2 C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5344373, @@ -3480,7 +5953,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3515,6 +5994,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3524,7 +6035,11 @@ "sample identifier": "Plate 2 C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5350551, @@ -3539,7 +6054,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3574,6 +6095,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3583,7 +6136,11 @@ "sample identifier": "Plate 2 C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5254030, @@ -3598,7 +6155,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3633,6 +6196,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3642,7 +6237,11 @@ "sample identifier": "Plate 2 C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4937846, @@ -3657,7 +6256,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3692,6 +6297,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3701,7 +6338,11 @@ "sample identifier": "Plate 2 C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5377497, @@ -3716,7 +6357,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3751,6 +6398,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3760,7 +6439,11 @@ "sample identifier": "Plate 2 C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5389125, @@ -3775,7 +6458,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3810,6 +6499,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3819,7 +6540,11 @@ "sample identifier": "Plate 2 C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5346848, @@ -3834,7 +6559,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3869,6 +6600,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3878,7 +6641,11 @@ "sample identifier": "Plate 2 C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5366021, @@ -3893,7 +6660,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3928,6 +6701,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3937,7 +6742,11 @@ "sample identifier": "Plate 2 C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3570925, @@ -3952,7 +6761,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -3987,6 +6802,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -3996,7 +6843,11 @@ "sample identifier": "Plate 2 C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4672547, @@ -4011,7 +6862,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4046,6 +6903,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4055,7 +6944,11 @@ "sample identifier": "Plate 2 D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5364805, @@ -4070,7 +6963,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4105,6 +7004,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4114,7 +7045,11 @@ "sample identifier": "Plate 2 D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4914931, @@ -4129,7 +7064,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4164,6 +7105,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4173,7 +7146,11 @@ "sample identifier": "Plate 2 D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4440585, @@ -4188,7 +7165,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4223,6 +7206,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4232,7 +7247,11 @@ "sample identifier": "Plate 2 D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5007195, @@ -4247,7 +7266,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4282,6 +7307,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4291,7 +7348,11 @@ "sample identifier": "Plate 2 D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3229263, @@ -4306,7 +7367,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4341,6 +7408,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4350,7 +7449,11 @@ "sample identifier": "Plate 2 D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4323321, @@ -4365,7 +7468,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4400,6 +7509,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4409,7 +7550,11 @@ "sample identifier": "Plate 2 D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2740849, @@ -4424,7 +7569,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4459,6 +7610,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4468,7 +7651,11 @@ "sample identifier": "Plate 2 D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3690581, @@ -4483,7 +7670,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4518,6 +7711,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4527,7 +7752,11 @@ "sample identifier": "Plate 2 D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3125480, @@ -4542,7 +7771,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4577,6 +7812,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4586,7 +7853,11 @@ "sample identifier": "Plate 2 D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3939943, @@ -4601,7 +7872,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4636,6 +7913,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4645,7 +7954,11 @@ "sample identifier": "Plate 2 D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2936067, @@ -4660,7 +7973,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4695,6 +8014,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4704,7 +8055,11 @@ "sample identifier": "Plate 2 D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5392265, @@ -4719,7 +8074,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4754,6 +8115,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4763,7 +8156,11 @@ "sample identifier": "Plate 2 E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3990440, @@ -4778,7 +8175,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4813,6 +8216,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4822,7 +8257,11 @@ "sample identifier": "Plate 2 E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2854743, @@ -4837,7 +8276,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4872,6 +8317,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4881,7 +8358,11 @@ "sample identifier": "Plate 2 E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2515811, @@ -4896,7 +8377,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4931,6 +8418,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4940,7 +8459,11 @@ "sample identifier": "Plate 2 E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3104667, @@ -4955,7 +8478,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -4990,6 +8519,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -4999,7 +8560,11 @@ "sample identifier": "Plate 2 E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 320530, @@ -5014,7 +8579,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5049,6 +8620,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5058,7 +8661,11 @@ "sample identifier": "Plate 2 E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17811, @@ -5073,7 +8680,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5108,6 +8721,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5117,7 +8762,11 @@ "sample identifier": "Plate 2 E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17534, @@ -5132,7 +8781,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5167,6 +8822,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5176,7 +8863,11 @@ "sample identifier": "Plate 2 E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17969, @@ -5191,7 +8882,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5226,6 +8923,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5235,7 +8964,11 @@ "sample identifier": "Plate 2 E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 18572, @@ -5250,7 +8983,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5285,6 +9024,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5294,7 +9065,11 @@ "sample identifier": "Plate 2 E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17351, @@ -5309,7 +9084,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5344,6 +9125,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5353,7 +9166,11 @@ "sample identifier": "Plate 2 E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16976, @@ -5368,7 +9185,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5403,6 +9226,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5412,7 +9267,11 @@ "sample identifier": "Plate 2 E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17019, @@ -5427,7 +9286,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5462,6 +9327,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5471,7 +9368,11 @@ "sample identifier": "Plate 2 F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 23868, @@ -5486,7 +9387,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5521,6 +9428,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5530,7 +9469,11 @@ "sample identifier": "Plate 2 F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 19216, @@ -5545,7 +9488,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5580,6 +9529,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5589,7 +9570,11 @@ "sample identifier": "Plate 2 F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 20363, @@ -5604,7 +9589,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5639,6 +9630,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5648,7 +9671,11 @@ "sample identifier": "Plate 2 F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17703, @@ -5663,7 +9690,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5698,6 +9731,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5707,7 +9772,11 @@ "sample identifier": "Plate 2 F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 27566, @@ -5722,7 +9791,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5757,6 +9832,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5766,7 +9873,11 @@ "sample identifier": "Plate 2 F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 25297, @@ -5781,7 +9892,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5816,6 +9933,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5825,7 +9974,11 @@ "sample identifier": "Plate 2 F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 28521, @@ -5840,7 +9993,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5875,6 +10034,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5884,7 +10075,11 @@ "sample identifier": "Plate 2 F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 26153, @@ -5899,7 +10094,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5934,6 +10135,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -5943,7 +10176,11 @@ "sample identifier": "Plate 2 F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 25187, @@ -5958,7 +10195,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -5993,6 +10236,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6002,7 +10277,11 @@ "sample identifier": "Plate 2 F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 24998, @@ -6017,7 +10296,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6052,6 +10337,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6061,7 +10378,11 @@ "sample identifier": "Plate 2 F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 22973, @@ -6076,7 +10397,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6111,6 +10438,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6120,7 +10479,11 @@ "sample identifier": "Plate 2 F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 24897, @@ -6135,7 +10498,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6170,6 +10539,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6179,7 +10580,11 @@ "sample identifier": "Plate 2 G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16913, @@ -6194,7 +10599,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6229,6 +10640,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6238,7 +10681,11 @@ "sample identifier": "Plate 2 G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16521, @@ -6253,7 +10700,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6288,6 +10741,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6297,7 +10782,11 @@ "sample identifier": "Plate 2 G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16766, @@ -6312,7 +10801,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6347,6 +10842,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6356,7 +10883,11 @@ "sample identifier": "Plate 2 G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 18487, @@ -6371,7 +10902,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6406,6 +10943,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6415,7 +10984,11 @@ "sample identifier": "Plate 2 G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16394, @@ -6430,7 +11003,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6465,6 +11044,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6474,7 +11085,11 @@ "sample identifier": "Plate 2 G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17517, @@ -6489,7 +11104,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6524,6 +11145,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6533,7 +11186,11 @@ "sample identifier": "Plate 2 G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17463, @@ -6548,7 +11205,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6583,6 +11246,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6592,7 +11287,11 @@ "sample identifier": "Plate 2 G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17478, @@ -6607,7 +11306,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6642,6 +11347,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6651,7 +11388,11 @@ "sample identifier": "Plate 2 G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17600, @@ -6666,7 +11407,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6701,6 +11448,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6710,7 +11489,11 @@ "sample identifier": "Plate 2 G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17238, @@ -6725,7 +11508,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6760,6 +11549,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6769,7 +11590,11 @@ "sample identifier": "Plate 2 G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16818, @@ -6784,7 +11609,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6819,6 +11650,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6828,7 +11691,11 @@ "sample identifier": "Plate 2 G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16824, @@ -6843,7 +11710,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6878,6 +11751,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6887,7 +11792,11 @@ "sample identifier": "Plate 2 H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16838, @@ -6902,7 +11811,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6937,6 +11852,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -6946,7 +11893,11 @@ "sample identifier": "Plate 2 H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16724, @@ -6961,7 +11912,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -6996,6 +11953,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7005,7 +11994,11 @@ "sample identifier": "Plate 2 H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16684, @@ -7020,7 +12013,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7055,6 +12054,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7064,7 +12095,11 @@ "sample identifier": "Plate 2 H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17966, @@ -7079,7 +12114,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7114,6 +12155,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7123,7 +12196,11 @@ "sample identifier": "Plate 2 H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17304, @@ -7138,7 +12215,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7173,6 +12256,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7182,7 +12297,11 @@ "sample identifier": "Plate 2 H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17244, @@ -7197,7 +12316,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7232,6 +12357,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7241,7 +12398,11 @@ "sample identifier": "Plate 2 H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17581, @@ -7256,7 +12417,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7291,6 +12458,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7300,7 +12499,11 @@ "sample identifier": "Plate 2 H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17828, @@ -7315,7 +12518,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7350,6 +12559,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7359,7 +12600,11 @@ "sample identifier": "Plate 2 H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17331, @@ -7374,7 +12619,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7409,6 +12660,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7418,7 +12701,11 @@ "sample identifier": "Plate 2 H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17771, @@ -7433,7 +12720,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7468,6 +12761,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7477,7 +12802,11 @@ "sample identifier": "Plate 2 H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16911, @@ -7492,7 +12821,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7527,6 +12862,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.7, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7536,7 +12903,11 @@ "sample identifier": "Plate 2 H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 2" + "well plate identifier": "Plate 2", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16328, @@ -7551,7 +12922,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7586,6 +12963,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7595,7 +13004,11 @@ "sample identifier": "Plate 3 A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3348493, @@ -7610,7 +13023,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7645,6 +13064,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7654,7 +13105,11 @@ "sample identifier": "Plate 3 A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3141523, @@ -7669,7 +13124,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7704,6 +13165,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7713,7 +13206,11 @@ "sample identifier": "Plate 3 A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5376874, @@ -7728,7 +13225,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7763,6 +13266,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7772,7 +13307,11 @@ "sample identifier": "Plate 3 A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5395344, @@ -7787,7 +13326,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7822,6 +13367,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7831,7 +13408,11 @@ "sample identifier": "Plate 3 A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5408015, @@ -7846,7 +13427,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7881,6 +13468,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7890,7 +13509,11 @@ "sample identifier": "Plate 3 A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5281516, @@ -7905,7 +13528,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7940,6 +13569,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -7949,7 +13610,11 @@ "sample identifier": "Plate 3 A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4441834, @@ -7964,7 +13629,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -7999,6 +13670,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8008,7 +13711,11 @@ "sample identifier": "Plate 3 A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5374217, @@ -8023,7 +13730,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8058,6 +13771,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8067,7 +13812,11 @@ "sample identifier": "Plate 3 A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5351533, @@ -8082,7 +13831,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8117,6 +13872,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8126,7 +13913,11 @@ "sample identifier": "Plate 3 A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5383175, @@ -8141,7 +13932,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8176,6 +13973,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8185,7 +14014,11 @@ "sample identifier": "Plate 3 A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2149916, @@ -8200,7 +14033,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8235,6 +14074,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8244,7 +14115,11 @@ "sample identifier": "Plate 3 A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5102113, @@ -8259,7 +14134,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8294,6 +14175,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8303,7 +14216,11 @@ "sample identifier": "Plate 3 B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3454487, @@ -8318,7 +14235,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8353,6 +14276,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8362,7 +14317,11 @@ "sample identifier": "Plate 3 B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5394290, @@ -8377,7 +14336,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8412,6 +14377,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8421,7 +14418,11 @@ "sample identifier": "Plate 3 B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5417005, @@ -8436,7 +14437,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8471,6 +14478,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8480,7 +14519,11 @@ "sample identifier": "Plate 3 B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5378447, @@ -8495,7 +14538,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8530,6 +14579,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8539,7 +14620,11 @@ "sample identifier": "Plate 3 B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5399028, @@ -8554,7 +14639,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8589,6 +14680,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8598,7 +14721,11 @@ "sample identifier": "Plate 3 B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5378455, @@ -8613,7 +14740,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8648,6 +14781,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8657,7 +14822,11 @@ "sample identifier": "Plate 3 B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5297121, @@ -8672,7 +14841,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8707,6 +14882,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8716,7 +14923,11 @@ "sample identifier": "Plate 3 B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5377670, @@ -8731,7 +14942,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8766,6 +14983,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8775,7 +15024,11 @@ "sample identifier": "Plate 3 B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5371420, @@ -8790,7 +15043,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8825,6 +15084,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8834,7 +15125,11 @@ "sample identifier": "Plate 3 B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5357850, @@ -8849,7 +15144,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8884,6 +15185,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8893,7 +15226,11 @@ "sample identifier": "Plate 3 B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5395846, @@ -8908,7 +15245,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -8943,6 +15286,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -8952,7 +15327,11 @@ "sample identifier": "Plate 3 B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5373154, @@ -8967,7 +15346,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9002,6 +15387,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9011,7 +15428,11 @@ "sample identifier": "Plate 3 C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3336983, @@ -9026,7 +15447,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9061,6 +15488,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9070,7 +15529,11 @@ "sample identifier": "Plate 3 C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5356267, @@ -9085,7 +15548,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9120,6 +15589,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9129,7 +15630,11 @@ "sample identifier": "Plate 3 C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5357329, @@ -9144,7 +15649,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9179,6 +15690,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9188,7 +15731,11 @@ "sample identifier": "Plate 3 C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5384269, @@ -9203,7 +15750,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9238,6 +15791,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9247,7 +15832,11 @@ "sample identifier": "Plate 3 C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5363127, @@ -9262,7 +15851,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9297,6 +15892,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9306,7 +15933,11 @@ "sample identifier": "Plate 3 C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5393763, @@ -9321,7 +15952,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9356,6 +15993,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9365,7 +16034,11 @@ "sample identifier": "Plate 3 C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3895438, @@ -9380,7 +16053,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9415,6 +16094,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9424,7 +16135,11 @@ "sample identifier": "Plate 3 C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5404853, @@ -9439,7 +16154,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9474,6 +16195,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9483,7 +16236,11 @@ "sample identifier": "Plate 3 C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4239334, @@ -9498,7 +16255,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9533,6 +16296,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9542,7 +16337,11 @@ "sample identifier": "Plate 3 C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2451683, @@ -9557,7 +16356,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9592,6 +16397,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9601,7 +16438,11 @@ "sample identifier": "Plate 3 C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4157324, @@ -9616,7 +16457,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9651,6 +16498,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9660,7 +16539,11 @@ "sample identifier": "Plate 3 C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3521777, @@ -9675,7 +16558,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9710,6 +16599,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9719,7 +16640,11 @@ "sample identifier": "Plate 3 D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1249307, @@ -9734,7 +16659,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9769,6 +16700,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9778,7 +16741,11 @@ "sample identifier": "Plate 3 D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 785495, @@ -9793,7 +16760,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9828,6 +16801,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9837,7 +16842,11 @@ "sample identifier": "Plate 3 D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 459078, @@ -9852,7 +16861,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9887,6 +16902,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9896,7 +16943,11 @@ "sample identifier": "Plate 3 D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 957095, @@ -9911,7 +16962,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -9946,6 +17003,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -9955,7 +17044,11 @@ "sample identifier": "Plate 3 D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1363891, @@ -9970,7 +17063,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10005,6 +17104,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10014,7 +17145,11 @@ "sample identifier": "Plate 3 D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1173665, @@ -10029,7 +17164,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10064,6 +17205,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10073,7 +17246,11 @@ "sample identifier": "Plate 3 D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1012954, @@ -10088,7 +17265,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10123,6 +17306,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10132,7 +17347,11 @@ "sample identifier": "Plate 3 D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1173793, @@ -10147,7 +17366,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10182,6 +17407,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10191,7 +17448,11 @@ "sample identifier": "Plate 3 D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 819448, @@ -10206,7 +17467,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10241,6 +17508,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10250,7 +17549,11 @@ "sample identifier": "Plate 3 D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 867431, @@ -10265,7 +17568,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10300,6 +17609,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10309,7 +17650,11 @@ "sample identifier": "Plate 3 D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 969752, @@ -10324,7 +17669,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10359,6 +17710,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10368,7 +17751,11 @@ "sample identifier": "Plate 3 D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 21665, @@ -10383,7 +17770,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10418,6 +17811,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10427,7 +17852,11 @@ "sample identifier": "Plate 3 E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 26410, @@ -10442,7 +17871,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10477,6 +17912,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10486,7 +17953,11 @@ "sample identifier": "Plate 3 E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 40007, @@ -10501,7 +17972,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10536,6 +18013,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10545,7 +18054,11 @@ "sample identifier": "Plate 3 E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 35561, @@ -10560,7 +18073,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10595,6 +18114,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10604,7 +18155,11 @@ "sample identifier": "Plate 3 E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 20951, @@ -10619,7 +18174,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10654,6 +18215,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10663,7 +18256,11 @@ "sample identifier": "Plate 3 E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 35489, @@ -10678,7 +18275,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10713,6 +18316,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10722,7 +18357,11 @@ "sample identifier": "Plate 3 E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 31894, @@ -10737,7 +18376,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10772,6 +18417,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10781,7 +18458,11 @@ "sample identifier": "Plate 3 E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 36924, @@ -10796,7 +18477,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10831,6 +18518,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10840,7 +18559,11 @@ "sample identifier": "Plate 3 E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 42753, @@ -10855,7 +18578,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10890,6 +18619,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10899,7 +18660,11 @@ "sample identifier": "Plate 3 E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 38194, @@ -10914,7 +18679,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -10949,6 +18720,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -10958,7 +18761,11 @@ "sample identifier": "Plate 3 E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 42708, @@ -10973,7 +18780,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11008,6 +18821,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11017,7 +18862,11 @@ "sample identifier": "Plate 3 E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 40597, @@ -11032,7 +18881,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11067,6 +18922,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11076,7 +18963,11 @@ "sample identifier": "Plate 3 E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 56782, @@ -11091,7 +18982,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11126,6 +19023,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11135,7 +19064,11 @@ "sample identifier": "Plate 3 F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17526, @@ -11150,7 +19083,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11185,6 +19124,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11194,7 +19165,11 @@ "sample identifier": "Plate 3 F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 18077, @@ -11209,7 +19184,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11244,6 +19225,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11253,7 +19266,11 @@ "sample identifier": "Plate 3 F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17474, @@ -11268,7 +19285,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11303,6 +19326,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11312,7 +19367,11 @@ "sample identifier": "Plate 3 F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 18101, @@ -11327,7 +19386,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11362,6 +19427,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11371,7 +19468,11 @@ "sample identifier": "Plate 3 F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 28670, @@ -11386,7 +19487,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11421,6 +19528,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11430,7 +19569,11 @@ "sample identifier": "Plate 3 F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17290, @@ -11445,7 +19588,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11480,6 +19629,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11489,7 +19670,11 @@ "sample identifier": "Plate 3 F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17970, @@ -11504,7 +19689,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11539,6 +19730,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11548,7 +19771,11 @@ "sample identifier": "Plate 3 F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 19062, @@ -11563,7 +19790,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11598,6 +19831,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11607,7 +19872,11 @@ "sample identifier": "Plate 3 F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17269, @@ -11622,7 +19891,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11657,6 +19932,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11666,7 +19973,11 @@ "sample identifier": "Plate 3 F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17969, @@ -11681,7 +19992,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11716,6 +20033,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11725,7 +20074,11 @@ "sample identifier": "Plate 3 F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16853, @@ -11740,7 +20093,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11775,6 +20134,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11784,7 +20175,11 @@ "sample identifier": "Plate 3 F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16740, @@ -11799,7 +20194,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11834,6 +20235,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11843,7 +20276,11 @@ "sample identifier": "Plate 3 G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17372, @@ -11858,7 +20295,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11893,6 +20336,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11902,7 +20377,11 @@ "sample identifier": "Plate 3 G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17272, @@ -11917,7 +20396,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -11952,6 +20437,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -11961,7 +20478,11 @@ "sample identifier": "Plate 3 G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17575, @@ -11976,7 +20497,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12011,6 +20538,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12020,7 +20579,11 @@ "sample identifier": "Plate 3 G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17711, @@ -12035,7 +20598,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12070,6 +20639,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12079,7 +20680,11 @@ "sample identifier": "Plate 3 G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 18120, @@ -12094,7 +20699,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12129,6 +20740,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12138,7 +20781,11 @@ "sample identifier": "Plate 3 G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17377, @@ -12153,7 +20800,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12188,6 +20841,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12197,7 +20882,11 @@ "sample identifier": "Plate 3 G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17840, @@ -12212,7 +20901,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12247,6 +20942,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12256,7 +20983,11 @@ "sample identifier": "Plate 3 G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 18008, @@ -12271,7 +21002,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12306,6 +21043,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12315,7 +21084,11 @@ "sample identifier": "Plate 3 G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16862, @@ -12330,7 +21103,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12365,6 +21144,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12374,7 +21185,11 @@ "sample identifier": "Plate 3 G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16884, @@ -12389,7 +21204,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12424,6 +21245,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12433,7 +21286,11 @@ "sample identifier": "Plate 3 G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16283, @@ -12448,7 +21305,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12483,6 +21346,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12492,7 +21387,11 @@ "sample identifier": "Plate 3 G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16751, @@ -12507,7 +21406,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12542,6 +21447,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12551,7 +21488,11 @@ "sample identifier": "Plate 3 H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17087, @@ -12566,7 +21507,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12601,6 +21548,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12610,7 +21589,11 @@ "sample identifier": "Plate 3 H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17181, @@ -12625,7 +21608,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12660,6 +21649,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12669,7 +21690,11 @@ "sample identifier": "Plate 3 H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16916, @@ -12684,7 +21709,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12719,6 +21750,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12728,7 +21791,11 @@ "sample identifier": "Plate 3 H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17546, @@ -12743,7 +21810,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12778,6 +21851,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12787,7 +21892,11 @@ "sample identifier": "Plate 3 H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 18415, @@ -12802,7 +21911,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12837,6 +21952,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12846,7 +21993,11 @@ "sample identifier": "Plate 3 H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 50471, @@ -12861,7 +22012,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12896,6 +22053,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12905,7 +22094,11 @@ "sample identifier": "Plate 3 H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 18118, @@ -12920,7 +22113,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -12955,6 +22154,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -12964,7 +22195,11 @@ "sample identifier": "Plate 3 H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 18728, @@ -12979,7 +22214,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13014,6 +22255,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13023,7 +22296,11 @@ "sample identifier": "Plate 3 H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 18751, @@ -13038,7 +22315,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13073,6 +22356,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13082,7 +22397,11 @@ "sample identifier": "Plate 3 H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17208, @@ -13097,7 +22416,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13132,6 +22457,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13141,7 +22498,11 @@ "sample identifier": "Plate 3 H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 17076, @@ -13156,7 +22517,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13191,6 +22558,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.65, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 46.9, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.24, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13200,7 +22599,11 @@ "sample identifier": "Plate 3 H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 3" + "well plate identifier": "Plate 3", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 16991, @@ -13215,7 +22618,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13250,6 +22659,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13259,7 +22700,11 @@ "sample identifier": "Plate 4 A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1409283, @@ -13274,7 +22719,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13309,6 +22760,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13318,7 +22801,11 @@ "sample identifier": "Plate 4 A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1945529, @@ -13333,7 +22820,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13368,6 +22861,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13377,7 +22902,11 @@ "sample identifier": "Plate 4 A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 749801, @@ -13392,7 +22921,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13427,6 +22962,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13436,7 +23003,11 @@ "sample identifier": "Plate 4 A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1170127, @@ -13451,7 +23022,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13486,6 +23063,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13495,7 +23104,11 @@ "sample identifier": "Plate 4 A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 490238, @@ -13510,7 +23123,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13545,6 +23164,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13554,7 +23205,11 @@ "sample identifier": "Plate 4 A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 619873, @@ -13569,7 +23224,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13604,6 +23265,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13613,7 +23306,11 @@ "sample identifier": "Plate 4 A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 857007, @@ -13628,7 +23325,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13663,6 +23366,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13672,7 +23407,11 @@ "sample identifier": "Plate 4 A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 538621, @@ -13687,7 +23426,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13722,6 +23467,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13731,7 +23508,11 @@ "sample identifier": "Plate 4 A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 521311, @@ -13746,7 +23527,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13781,6 +23568,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13790,7 +23609,11 @@ "sample identifier": "Plate 4 A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1061143, @@ -13805,7 +23628,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13840,6 +23669,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13849,7 +23710,11 @@ "sample identifier": "Plate 4 A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 592159, @@ -13864,7 +23729,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13899,6 +23770,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13908,7 +23811,11 @@ "sample identifier": "Plate 4 A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1486465, @@ -13923,7 +23830,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -13958,6 +23871,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -13967,7 +23912,11 @@ "sample identifier": "Plate 4 B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1005516, @@ -13982,7 +23931,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14017,6 +23972,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14026,7 +24013,11 @@ "sample identifier": "Plate 4 B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1421547, @@ -14041,7 +24032,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14076,6 +24073,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14085,7 +24114,11 @@ "sample identifier": "Plate 4 B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1135068, @@ -14100,7 +24133,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14135,6 +24174,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14144,7 +24215,11 @@ "sample identifier": "Plate 4 B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 854857, @@ -14159,7 +24234,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14194,6 +24275,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14203,7 +24316,11 @@ "sample identifier": "Plate 4 B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2073737, @@ -14218,7 +24335,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14253,6 +24376,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14262,7 +24417,11 @@ "sample identifier": "Plate 4 B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1780532, @@ -14277,7 +24436,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14312,6 +24477,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14321,7 +24518,11 @@ "sample identifier": "Plate 4 B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1253227, @@ -14336,7 +24537,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14371,6 +24578,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14380,7 +24619,11 @@ "sample identifier": "Plate 4 B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1958330, @@ -14395,7 +24638,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14430,6 +24679,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14439,7 +24720,11 @@ "sample identifier": "Plate 4 B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1366661, @@ -14454,7 +24739,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14489,6 +24780,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14498,7 +24821,11 @@ "sample identifier": "Plate 4 B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2090440, @@ -14513,7 +24840,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14548,6 +24881,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14557,7 +24922,11 @@ "sample identifier": "Plate 4 B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1818030, @@ -14572,7 +24941,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14607,6 +24982,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14616,7 +25023,11 @@ "sample identifier": "Plate 4 B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2286884, @@ -14631,7 +25042,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14666,6 +25083,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14675,7 +25124,11 @@ "sample identifier": "Plate 4 C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2823772, @@ -14690,7 +25143,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14725,6 +25184,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14734,7 +25225,11 @@ "sample identifier": "Plate 4 C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1593347, @@ -14749,7 +25244,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14784,6 +25285,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14793,7 +25326,11 @@ "sample identifier": "Plate 4 C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1811826, @@ -14808,7 +25345,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14843,6 +25386,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14852,7 +25427,11 @@ "sample identifier": "Plate 4 C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1068328, @@ -14867,7 +25446,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14902,6 +25487,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14911,7 +25528,11 @@ "sample identifier": "Plate 4 C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2088061, @@ -14926,7 +25547,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -14961,6 +25588,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -14970,7 +25629,11 @@ "sample identifier": "Plate 4 C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1392525, @@ -14985,7 +25648,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15020,6 +25689,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15029,7 +25730,11 @@ "sample identifier": "Plate 4 C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2382239, @@ -15044,7 +25749,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15079,6 +25790,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15088,7 +25831,11 @@ "sample identifier": "Plate 4 C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1172560, @@ -15103,7 +25850,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15138,6 +25891,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15147,7 +25932,11 @@ "sample identifier": "Plate 4 C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1325652, @@ -15162,7 +25951,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15197,6 +25992,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15206,7 +26033,11 @@ "sample identifier": "Plate 4 C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 891145, @@ -15221,7 +26052,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15256,6 +26093,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15265,7 +26134,11 @@ "sample identifier": "Plate 4 C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1239732, @@ -15280,7 +26153,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15315,6 +26194,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15324,7 +26235,11 @@ "sample identifier": "Plate 4 C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1062299, @@ -15339,7 +26254,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15374,6 +26295,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15383,7 +26336,11 @@ "sample identifier": "Plate 4 D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1326201, @@ -15398,7 +26355,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15433,6 +26396,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15442,7 +26437,11 @@ "sample identifier": "Plate 4 D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1953873, @@ -15457,7 +26456,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15492,6 +26497,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15501,7 +26538,11 @@ "sample identifier": "Plate 4 D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2891563, @@ -15516,7 +26557,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15551,6 +26598,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15560,7 +26639,11 @@ "sample identifier": "Plate 4 D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2082664, @@ -15575,7 +26658,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15610,6 +26699,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15619,7 +26740,11 @@ "sample identifier": "Plate 4 D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1953906, @@ -15634,7 +26759,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15669,6 +26800,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15678,7 +26841,11 @@ "sample identifier": "Plate 4 D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1685107, @@ -15693,7 +26860,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15728,6 +26901,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15737,7 +26942,11 @@ "sample identifier": "Plate 4 D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2669892, @@ -15752,7 +26961,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15787,6 +27002,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15796,7 +27043,11 @@ "sample identifier": "Plate 4 D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2239118, @@ -15811,7 +27062,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15846,6 +27103,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15855,7 +27144,11 @@ "sample identifier": "Plate 4 D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1595223, @@ -15870,7 +27163,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15905,6 +27204,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15914,7 +27245,11 @@ "sample identifier": "Plate 4 D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1917794, @@ -15929,7 +27264,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -15964,6 +27305,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -15973,7 +27346,11 @@ "sample identifier": "Plate 4 D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2428262, @@ -15988,7 +27365,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16023,6 +27406,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16032,7 +27447,11 @@ "sample identifier": "Plate 4 D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 957092, @@ -16047,7 +27466,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16082,6 +27507,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16091,7 +27548,11 @@ "sample identifier": "Plate 4 E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1580117, @@ -16106,7 +27567,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16141,6 +27608,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16150,7 +27649,11 @@ "sample identifier": "Plate 4 E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2164552, @@ -16165,7 +27668,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16200,6 +27709,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16209,7 +27750,11 @@ "sample identifier": "Plate 4 E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1880078, @@ -16224,7 +27769,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16259,6 +27810,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16268,7 +27851,11 @@ "sample identifier": "Plate 4 E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2143875, @@ -16283,7 +27870,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16318,6 +27911,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16327,7 +27952,11 @@ "sample identifier": "Plate 4 E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1105358, @@ -16342,7 +27971,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16377,6 +28012,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16386,7 +28053,11 @@ "sample identifier": "Plate 4 E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1665919, @@ -16401,7 +28072,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16436,6 +28113,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16445,7 +28154,11 @@ "sample identifier": "Plate 4 E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2510117, @@ -16460,7 +28173,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16495,6 +28214,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16504,7 +28255,11 @@ "sample identifier": "Plate 4 E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2722563, @@ -16519,7 +28274,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16554,6 +28315,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16563,7 +28356,11 @@ "sample identifier": "Plate 4 E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2484835, @@ -16578,7 +28375,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16613,6 +28416,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16622,7 +28457,11 @@ "sample identifier": "Plate 4 E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2377601, @@ -16637,7 +28476,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16672,6 +28517,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16681,7 +28558,11 @@ "sample identifier": "Plate 4 E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2625546, @@ -16696,7 +28577,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16731,6 +28618,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16740,7 +28659,11 @@ "sample identifier": "Plate 4 E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1943252, @@ -16755,7 +28678,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16790,6 +28719,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16799,7 +28760,11 @@ "sample identifier": "Plate 4 F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2075333, @@ -16814,7 +28779,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16849,6 +28820,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16858,7 +28861,11 @@ "sample identifier": "Plate 4 F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2544777, @@ -16873,7 +28880,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16908,6 +28921,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16917,7 +28962,11 @@ "sample identifier": "Plate 4 F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1861214, @@ -16932,7 +28981,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -16967,6 +29022,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -16976,7 +29063,11 @@ "sample identifier": "Plate 4 F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3107389, @@ -16991,7 +29082,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17026,6 +29123,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17035,7 +29164,11 @@ "sample identifier": "Plate 4 F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1497600, @@ -17050,7 +29183,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17085,6 +29224,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17094,7 +29265,11 @@ "sample identifier": "Plate 4 F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1603605, @@ -17109,7 +29284,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17144,6 +29325,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17153,7 +29366,11 @@ "sample identifier": "Plate 4 F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1167144, @@ -17168,7 +29385,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17203,6 +29426,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17212,7 +29467,11 @@ "sample identifier": "Plate 4 F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1625867, @@ -17227,7 +29486,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17262,6 +29527,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17271,7 +29568,11 @@ "sample identifier": "Plate 4 F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2906764, @@ -17286,7 +29587,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17321,6 +29628,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17330,7 +29669,11 @@ "sample identifier": "Plate 4 F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1679771, @@ -17345,7 +29688,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17380,6 +29729,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17389,7 +29770,11 @@ "sample identifier": "Plate 4 F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3365265, @@ -17404,7 +29789,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17439,6 +29830,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17448,7 +29871,11 @@ "sample identifier": "Plate 4 F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2911262, @@ -17463,7 +29890,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17498,6 +29931,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17507,7 +29972,11 @@ "sample identifier": "Plate 4 G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1688388, @@ -17522,7 +29991,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17557,6 +30032,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17566,7 +30073,11 @@ "sample identifier": "Plate 4 G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2092721, @@ -17581,7 +30092,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17616,6 +30133,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17625,7 +30174,11 @@ "sample identifier": "Plate 4 G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2446753, @@ -17640,7 +30193,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17675,6 +30234,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17684,7 +30275,11 @@ "sample identifier": "Plate 4 G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1989832, @@ -17699,7 +30294,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17734,6 +30335,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17743,7 +30376,11 @@ "sample identifier": "Plate 4 G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1880273, @@ -17758,7 +30395,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17793,6 +30436,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17802,7 +30477,11 @@ "sample identifier": "Plate 4 G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2063300, @@ -17817,7 +30496,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17852,6 +30537,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17861,7 +30578,11 @@ "sample identifier": "Plate 4 G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2317034, @@ -17876,7 +30597,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17911,6 +30638,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17920,7 +30679,11 @@ "sample identifier": "Plate 4 G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1998789, @@ -17935,7 +30698,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -17970,6 +30739,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -17979,7 +30780,11 @@ "sample identifier": "Plate 4 G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1359521, @@ -17994,7 +30799,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18029,6 +30840,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18038,7 +30881,11 @@ "sample identifier": "Plate 4 G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1601563, @@ -18053,7 +30900,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18088,6 +30941,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18097,7 +30982,11 @@ "sample identifier": "Plate 4 G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1333732, @@ -18112,7 +31001,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18147,6 +31042,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18156,7 +31083,11 @@ "sample identifier": "Plate 4 G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2437442, @@ -18171,7 +31102,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18206,6 +31143,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18215,7 +31184,11 @@ "sample identifier": "Plate 4 H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1916654, @@ -18230,7 +31203,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18265,6 +31244,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18274,7 +31285,11 @@ "sample identifier": "Plate 4 H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1685144, @@ -18289,7 +31304,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18324,6 +31345,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18333,7 +31386,11 @@ "sample identifier": "Plate 4 H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1426438, @@ -18348,7 +31405,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18383,6 +31446,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18392,7 +31487,11 @@ "sample identifier": "Plate 4 H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1722046, @@ -18407,7 +31506,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18442,6 +31547,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18451,7 +31588,11 @@ "sample identifier": "Plate 4 H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2064715, @@ -18466,7 +31607,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18501,6 +31648,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18510,7 +31689,11 @@ "sample identifier": "Plate 4 H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2390788, @@ -18525,7 +31708,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18560,6 +31749,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18569,7 +31790,11 @@ "sample identifier": "Plate 4 H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1382126, @@ -18584,7 +31809,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18619,6 +31850,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18628,7 +31891,11 @@ "sample identifier": "Plate 4 H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 1044371, @@ -18643,7 +31910,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18678,6 +31951,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18687,7 +31992,11 @@ "sample identifier": "Plate 4 H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2041734, @@ -18702,7 +32011,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18737,6 +32052,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18746,7 +32093,11 @@ "sample identifier": "Plate 4 H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2748785, @@ -18761,7 +32112,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18796,6 +32153,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18805,7 +32194,11 @@ "sample identifier": "Plate 4 H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2450313, @@ -18820,7 +32213,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18855,6 +32254,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.81, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.3, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18864,7 +32295,11 @@ "sample identifier": "Plate 4 H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 4" + "well plate identifier": "Plate 4", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2261131, @@ -18879,7 +32314,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18914,6 +32355,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18923,7 +32396,11 @@ "sample identifier": "Plate 5 A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2475378, @@ -18938,7 +32415,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -18973,6 +32456,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -18982,7 +32497,11 @@ "sample identifier": "Plate 5 A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4095377, @@ -18997,7 +32516,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19032,6 +32557,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19041,7 +32598,11 @@ "sample identifier": "Plate 5 A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4402343, @@ -19056,7 +32617,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19091,6 +32658,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19100,7 +32699,11 @@ "sample identifier": "Plate 5 A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3497145, @@ -19115,7 +32718,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19150,6 +32759,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19159,7 +32800,11 @@ "sample identifier": "Plate 5 A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3633971, @@ -19174,7 +32819,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19209,6 +32860,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19218,7 +32901,11 @@ "sample identifier": "Plate 5 A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3740107, @@ -19233,7 +32920,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19268,6 +32961,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19277,7 +33002,11 @@ "sample identifier": "Plate 5 A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4709004, @@ -19292,7 +33021,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19327,6 +33062,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19336,7 +33103,11 @@ "sample identifier": "Plate 5 A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3717290, @@ -19351,7 +33122,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19386,6 +33163,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19395,7 +33204,11 @@ "sample identifier": "Plate 5 A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3772603, @@ -19410,7 +33223,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19445,6 +33264,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19454,7 +33305,11 @@ "sample identifier": "Plate 5 A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4573033, @@ -19469,7 +33324,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19504,6 +33365,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19513,7 +33406,11 @@ "sample identifier": "Plate 5 A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4959756, @@ -19528,7 +33425,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19563,6 +33466,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19572,7 +33507,11 @@ "sample identifier": "Plate 5 A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4248533, @@ -19587,7 +33526,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19622,6 +33567,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19631,7 +33608,11 @@ "sample identifier": "Plate 5 B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3880591, @@ -19646,7 +33627,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19681,6 +33668,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19690,7 +33709,11 @@ "sample identifier": "Plate 5 B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3112000, @@ -19705,7 +33728,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19740,6 +33769,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19749,7 +33810,11 @@ "sample identifier": "Plate 5 B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3962477, @@ -19764,7 +33829,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19799,6 +33870,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19808,7 +33911,11 @@ "sample identifier": "Plate 5 B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3962143, @@ -19823,7 +33930,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19858,6 +33971,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19867,7 +34012,11 @@ "sample identifier": "Plate 5 B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3943098, @@ -19882,7 +34031,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19917,6 +34072,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19926,7 +34113,11 @@ "sample identifier": "Plate 5 B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3892846, @@ -19941,7 +34132,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -19976,6 +34173,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -19985,7 +34214,11 @@ "sample identifier": "Plate 5 B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3727522, @@ -20000,7 +34233,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20035,6 +34274,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20044,7 +34315,11 @@ "sample identifier": "Plate 5 B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4558711, @@ -20059,7 +34334,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20094,6 +34375,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20103,7 +34416,11 @@ "sample identifier": "Plate 5 B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4355786, @@ -20118,7 +34435,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20153,6 +34476,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20162,7 +34517,11 @@ "sample identifier": "Plate 5 B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4870183, @@ -20177,7 +34536,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20212,6 +34577,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20221,7 +34618,11 @@ "sample identifier": "Plate 5 B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4371467, @@ -20236,7 +34637,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20271,6 +34678,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20280,7 +34719,11 @@ "sample identifier": "Plate 5 B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4018061, @@ -20295,7 +34738,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20330,6 +34779,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20339,7 +34820,11 @@ "sample identifier": "Plate 5 C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3975689, @@ -20354,7 +34839,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20389,6 +34880,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20398,7 +34921,11 @@ "sample identifier": "Plate 5 C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3937287, @@ -20413,7 +34940,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20448,6 +34981,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20457,7 +35022,11 @@ "sample identifier": "Plate 5 C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4134371, @@ -20472,7 +35041,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20507,6 +35082,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20516,7 +35123,11 @@ "sample identifier": "Plate 5 C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3631200, @@ -20531,7 +35142,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20566,6 +35183,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20575,7 +35224,11 @@ "sample identifier": "Plate 5 C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4461658, @@ -20590,7 +35243,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20625,6 +35284,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20634,7 +35325,11 @@ "sample identifier": "Plate 5 C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4511918, @@ -20649,7 +35344,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20684,6 +35385,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20693,7 +35426,11 @@ "sample identifier": "Plate 5 C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4492275, @@ -20708,7 +35445,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20743,6 +35486,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20752,7 +35527,11 @@ "sample identifier": "Plate 5 C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4081788, @@ -20767,7 +35546,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20802,6 +35587,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20811,7 +35628,11 @@ "sample identifier": "Plate 5 C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3487195, @@ -20826,7 +35647,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20861,6 +35688,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20870,7 +35729,11 @@ "sample identifier": "Plate 5 C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4817495, @@ -20885,7 +35748,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20920,6 +35789,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20929,7 +35830,11 @@ "sample identifier": "Plate 5 C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4732385, @@ -20944,7 +35849,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -20979,6 +35890,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -20988,7 +35931,11 @@ "sample identifier": "Plate 5 C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5049086, @@ -21003,7 +35950,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21038,6 +35991,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21047,7 +36032,11 @@ "sample identifier": "Plate 5 D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4049392, @@ -21062,7 +36051,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21097,6 +36092,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21106,7 +36133,11 @@ "sample identifier": "Plate 5 D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3898581, @@ -21121,7 +36152,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21156,6 +36193,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21165,7 +36234,11 @@ "sample identifier": "Plate 5 D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3167916, @@ -21180,7 +36253,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21215,6 +36294,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21224,7 +36335,11 @@ "sample identifier": "Plate 5 D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3621590, @@ -21239,7 +36354,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21274,6 +36395,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21283,7 +36436,11 @@ "sample identifier": "Plate 5 D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3870289, @@ -21298,7 +36455,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21333,6 +36496,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21342,7 +36537,11 @@ "sample identifier": "Plate 5 D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3882701, @@ -21357,7 +36556,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21392,6 +36597,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21401,7 +36638,11 @@ "sample identifier": "Plate 5 D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 2903237, @@ -21416,7 +36657,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21451,6 +36698,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21460,7 +36739,11 @@ "sample identifier": "Plate 5 D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4039347, @@ -21475,7 +36758,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21510,6 +36799,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21519,7 +36840,11 @@ "sample identifier": "Plate 5 D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4388249, @@ -21534,7 +36859,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21569,6 +36900,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21578,7 +36941,11 @@ "sample identifier": "Plate 5 D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5237288, @@ -21593,7 +36960,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21628,6 +37001,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21637,7 +37042,11 @@ "sample identifier": "Plate 5 D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5100191, @@ -21652,7 +37061,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21687,6 +37102,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21696,7 +37143,11 @@ "sample identifier": "Plate 5 D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3982063, @@ -21711,7 +37162,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21746,6 +37203,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21755,7 +37244,11 @@ "sample identifier": "Plate 5 E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4332106, @@ -21770,7 +37263,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21805,6 +37304,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21814,7 +37345,11 @@ "sample identifier": "Plate 5 E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4681865, @@ -21829,7 +37364,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21864,6 +37405,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21873,7 +37446,11 @@ "sample identifier": "Plate 5 E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4663693, @@ -21888,7 +37465,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21923,6 +37506,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21932,7 +37547,11 @@ "sample identifier": "Plate 5 E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4271965, @@ -21947,7 +37566,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -21982,6 +37607,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -21991,7 +37648,11 @@ "sample identifier": "Plate 5 E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4397645, @@ -22006,7 +37667,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22041,6 +37708,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22050,7 +37749,11 @@ "sample identifier": "Plate 5 E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4738101, @@ -22065,7 +37768,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22100,6 +37809,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22109,7 +37850,11 @@ "sample identifier": "Plate 5 E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4323969, @@ -22124,7 +37869,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22159,6 +37910,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22168,7 +37951,11 @@ "sample identifier": "Plate 5 E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4272560, @@ -22183,7 +37970,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22218,6 +38011,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22227,7 +38052,11 @@ "sample identifier": "Plate 5 E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5018680, @@ -22242,7 +38071,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22277,6 +38112,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22286,7 +38153,11 @@ "sample identifier": "Plate 5 E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5353869, @@ -22301,7 +38172,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22336,6 +38213,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22345,7 +38254,11 @@ "sample identifier": "Plate 5 E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5322120, @@ -22360,7 +38273,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22395,6 +38314,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22404,7 +38355,11 @@ "sample identifier": "Plate 5 E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4501812, @@ -22419,7 +38374,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22454,6 +38415,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22463,7 +38456,11 @@ "sample identifier": "Plate 5 F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4253678, @@ -22478,7 +38475,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22513,6 +38516,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22522,7 +38557,11 @@ "sample identifier": "Plate 5 F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5042610, @@ -22537,7 +38576,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22572,6 +38617,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22581,7 +38658,11 @@ "sample identifier": "Plate 5 F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4350012, @@ -22596,7 +38677,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22631,6 +38718,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22640,7 +38759,11 @@ "sample identifier": "Plate 5 F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4271901, @@ -22655,7 +38778,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22690,6 +38819,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22699,7 +38860,11 @@ "sample identifier": "Plate 5 F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3561851, @@ -22714,7 +38879,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22749,6 +38920,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22758,7 +38961,11 @@ "sample identifier": "Plate 5 F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4859056, @@ -22773,7 +38980,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22808,6 +39021,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22817,7 +39062,11 @@ "sample identifier": "Plate 5 F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4860131, @@ -22832,7 +39081,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22867,6 +39122,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22876,7 +39163,11 @@ "sample identifier": "Plate 5 F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4724645, @@ -22891,7 +39182,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22926,6 +39223,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22935,7 +39264,11 @@ "sample identifier": "Plate 5 F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5235053, @@ -22950,7 +39283,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -22985,6 +39324,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -22994,7 +39365,11 @@ "sample identifier": "Plate 5 F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4234459, @@ -23009,7 +39384,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23044,6 +39425,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23053,7 +39466,11 @@ "sample identifier": "Plate 5 F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4231734, @@ -23068,7 +39485,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23103,6 +39526,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23112,7 +39567,11 @@ "sample identifier": "Plate 5 F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4786461, @@ -23127,7 +39586,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23162,6 +39627,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23171,7 +39668,11 @@ "sample identifier": "Plate 5 G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3664207, @@ -23186,7 +39687,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23221,6 +39728,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23230,7 +39769,11 @@ "sample identifier": "Plate 5 G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4455659, @@ -23245,7 +39788,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23280,6 +39829,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23289,7 +39870,11 @@ "sample identifier": "Plate 5 G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4279334, @@ -23304,7 +39889,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23339,6 +39930,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23348,7 +39971,11 @@ "sample identifier": "Plate 5 G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 3979506, @@ -23363,7 +39990,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23398,6 +40031,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23407,7 +40072,11 @@ "sample identifier": "Plate 5 G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5009299, @@ -23422,7 +40091,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23457,6 +40132,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23466,7 +40173,11 @@ "sample identifier": "Plate 5 G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5242914, @@ -23481,7 +40192,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23516,6 +40233,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23525,7 +40274,11 @@ "sample identifier": "Plate 5 G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4548177, @@ -23540,7 +40293,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23575,6 +40334,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23584,7 +40375,11 @@ "sample identifier": "Plate 5 G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5191539, @@ -23599,7 +40394,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23634,6 +40435,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23643,7 +40476,11 @@ "sample identifier": "Plate 5 G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5310934, @@ -23658,7 +40495,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23693,6 +40536,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23702,7 +40577,11 @@ "sample identifier": "Plate 5 G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4719495, @@ -23717,7 +40596,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23752,6 +40637,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23761,7 +40678,11 @@ "sample identifier": "Plate 5 G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4006335, @@ -23776,7 +40697,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23811,6 +40738,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23820,7 +40779,11 @@ "sample identifier": "Plate 5 G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4732678, @@ -23835,7 +40798,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23870,6 +40839,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23879,7 +40880,11 @@ "sample identifier": "Plate 5 H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4452879, @@ -23894,7 +40899,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23929,6 +40940,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23938,7 +40981,11 @@ "sample identifier": "Plate 5 H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4425679, @@ -23953,7 +41000,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -23988,6 +41041,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -23997,7 +41082,11 @@ "sample identifier": "Plate 5 H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4762977, @@ -24012,7 +41101,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -24047,6 +41142,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -24056,7 +41183,11 @@ "sample identifier": "Plate 5 H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4939068, @@ -24071,7 +41202,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -24106,6 +41243,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -24115,7 +41284,11 @@ "sample identifier": "Plate 5 H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5039335, @@ -24130,7 +41303,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -24165,6 +41344,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -24174,7 +41385,11 @@ "sample identifier": "Plate 5 H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4242370, @@ -24189,7 +41404,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -24224,6 +41445,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -24233,7 +41486,11 @@ "sample identifier": "Plate 5 H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4386464, @@ -24248,7 +41505,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -24283,6 +41546,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -24292,7 +41587,11 @@ "sample identifier": "Plate 5 H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4610107, @@ -24307,7 +41606,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -24342,6 +41647,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -24351,7 +41688,11 @@ "sample identifier": "Plate 5 H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4710795, @@ -24366,7 +41707,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -24401,6 +41748,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -24410,7 +41789,11 @@ "sample identifier": "Plate 5 H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5157002, @@ -24425,7 +41808,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -24460,6 +41849,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -24469,7 +41890,11 @@ "sample identifier": "Plate 5 H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 4457508, @@ -24484,7 +41909,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } }, { @@ -24519,6 +41950,38 @@ "excitation wavelength setting": { "value": 485.0, "unit": "nm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 18.71, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 18.73, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.0, + "unit": "%" + }, + "Humidity at end": { + "value": 47.2, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Inside temperature at start": { + "value": 19.4, + "unit": "degC" + }, + "Inside temperature at end": { + "value": 19.32, + "unit": "degC" + }, + "Height of the plate": "14.35 mm", + "Number of rows": 8.0, + "Number of columns": 12.0 } } ] @@ -24528,7 +41991,11 @@ "sample identifier": "Plate 5 H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "Plate 5" + "well plate identifier": "Plate 5", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "fluorescence": { "value": 5080334, @@ -24543,7 +42010,13 @@ }, "analytical method identifier": "100187", "experimental data identifier": "3564", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "Qubit - JP", + "Assay Exported": "11/10/2022 3:14:05 PM", + "Assay Finished": "11/10/2022 3:12:19 PM", + "Assay Started": "11/10/2022 3:09:07 PM" + } } } ], @@ -24553,7 +42026,7 @@ "file name": "PE_Envision_fluorescence_example02.csv", "UNC path": "tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example02.csv", "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.61", + "ASM converter version": "0.1.105", "software name": "EnVision Workstation", "software version": "1.13.3009.1409" }, diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example03.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example03.json index 54471f21a2..f73f502488 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example03.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example03.json @@ -14,7 +14,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -23,7 +51,12 @@ "sample identifier": "LoP_pool A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0, + "Name of the plate type": "384 Plate" + } }, "compartment temperature": { "value": 23.17, @@ -42,7 +75,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -57,7 +96,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -66,7 +133,11 @@ "sample identifier": "LoP_pool A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -85,7 +156,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -100,7 +177,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -109,7 +214,11 @@ "sample identifier": "LoP_pool A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -128,7 +237,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -143,7 +258,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -152,7 +295,11 @@ "sample identifier": "LoP_pool A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -171,7 +318,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -186,7 +339,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -195,7 +376,11 @@ "sample identifier": "LoP_pool A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -214,7 +399,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -229,7 +420,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -238,7 +457,11 @@ "sample identifier": "LoP_pool A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -257,7 +480,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -272,7 +501,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -281,7 +538,11 @@ "sample identifier": "LoP_pool A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -300,7 +561,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -315,7 +582,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -324,7 +619,11 @@ "sample identifier": "LoP_pool A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -343,7 +642,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -358,7 +663,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -367,7 +700,11 @@ "sample identifier": "LoP_pool A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -386,7 +723,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -401,7 +744,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -410,7 +781,11 @@ "sample identifier": "LoP_pool A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -429,7 +804,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -444,7 +825,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -453,7 +862,11 @@ "sample identifier": "LoP_pool A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -472,7 +885,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -487,7 +906,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -496,7 +943,11 @@ "sample identifier": "LoP_pool A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -515,7 +966,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -530,7 +987,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -539,7 +1024,11 @@ "sample identifier": "LoP_pool A13", "location identifier": "A13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -558,7 +1047,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -573,7 +1068,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -582,7 +1105,11 @@ "sample identifier": "LoP_pool A14", "location identifier": "A14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -601,7 +1128,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -616,7 +1149,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -625,7 +1186,11 @@ "sample identifier": "LoP_pool A15", "location identifier": "A15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -644,7 +1209,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -659,7 +1230,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -668,7 +1267,11 @@ "sample identifier": "LoP_pool A16", "location identifier": "A16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -687,7 +1290,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -702,7 +1311,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -711,7 +1348,11 @@ "sample identifier": "LoP_pool A17", "location identifier": "A17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -730,7 +1371,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -745,7 +1392,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -754,7 +1429,11 @@ "sample identifier": "LoP_pool A18", "location identifier": "A18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -773,7 +1452,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -788,7 +1473,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -797,7 +1510,11 @@ "sample identifier": "LoP_pool A19", "location identifier": "A19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -816,7 +1533,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -831,7 +1554,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -840,7 +1591,11 @@ "sample identifier": "LoP_pool A20", "location identifier": "A20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -859,7 +1614,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -874,7 +1635,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -883,7 +1672,11 @@ "sample identifier": "LoP_pool A21", "location identifier": "A21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -902,7 +1695,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -917,7 +1716,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -926,7 +1753,11 @@ "sample identifier": "LoP_pool A22", "location identifier": "A22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -945,7 +1776,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -960,7 +1797,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -969,7 +1834,11 @@ "sample identifier": "LoP_pool A23", "location identifier": "A23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -988,7 +1857,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1003,7 +1878,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1012,7 +1915,11 @@ "sample identifier": "LoP_pool A24", "location identifier": "A24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1031,7 +1938,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1046,7 +1959,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1055,7 +1996,11 @@ "sample identifier": "LoP_pool B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1074,7 +2019,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1089,7 +2040,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1098,7 +2077,11 @@ "sample identifier": "LoP_pool B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1117,7 +2100,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1132,7 +2121,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1141,7 +2158,11 @@ "sample identifier": "LoP_pool B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1160,7 +2181,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1175,7 +2202,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1184,7 +2239,11 @@ "sample identifier": "LoP_pool B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1203,7 +2262,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1218,7 +2283,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1227,7 +2320,11 @@ "sample identifier": "LoP_pool B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1246,7 +2343,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1261,7 +2364,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1270,7 +2401,11 @@ "sample identifier": "LoP_pool B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1289,7 +2424,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1304,7 +2445,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1313,7 +2482,11 @@ "sample identifier": "LoP_pool B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1332,7 +2505,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1347,7 +2526,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1356,7 +2563,11 @@ "sample identifier": "LoP_pool B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1375,7 +2586,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1390,7 +2607,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1399,7 +2644,11 @@ "sample identifier": "LoP_pool B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1418,7 +2667,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1433,7 +2688,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1442,7 +2725,11 @@ "sample identifier": "LoP_pool B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1461,7 +2748,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1476,7 +2769,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1485,7 +2806,11 @@ "sample identifier": "LoP_pool B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1504,7 +2829,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1519,7 +2850,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1528,7 +2887,11 @@ "sample identifier": "LoP_pool B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1547,7 +2910,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1562,7 +2931,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1571,7 +2968,11 @@ "sample identifier": "LoP_pool B13", "location identifier": "B13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1590,7 +2991,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1605,7 +3012,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1614,7 +3049,11 @@ "sample identifier": "LoP_pool B14", "location identifier": "B14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1633,7 +3072,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1648,7 +3093,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1657,7 +3130,11 @@ "sample identifier": "LoP_pool B15", "location identifier": "B15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1676,7 +3153,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1691,7 +3174,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1700,7 +3211,11 @@ "sample identifier": "LoP_pool B16", "location identifier": "B16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1719,7 +3234,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1734,7 +3255,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1743,7 +3292,11 @@ "sample identifier": "LoP_pool B17", "location identifier": "B17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1762,7 +3315,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1777,7 +3336,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1786,7 +3373,11 @@ "sample identifier": "LoP_pool B18", "location identifier": "B18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1805,7 +3396,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1820,7 +3417,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1829,7 +3454,11 @@ "sample identifier": "LoP_pool B19", "location identifier": "B19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1848,7 +3477,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1863,7 +3498,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1872,7 +3535,11 @@ "sample identifier": "LoP_pool B20", "location identifier": "B20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1891,7 +3558,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1906,7 +3579,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1915,7 +3616,11 @@ "sample identifier": "LoP_pool B21", "location identifier": "B21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1934,7 +3639,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1949,7 +3660,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -1958,7 +3697,11 @@ "sample identifier": "LoP_pool B22", "location identifier": "B22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -1977,7 +3720,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -1992,7 +3741,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2001,7 +3778,11 @@ "sample identifier": "LoP_pool B23", "location identifier": "B23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2020,7 +3801,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2035,7 +3822,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2044,7 +3859,11 @@ "sample identifier": "LoP_pool B24", "location identifier": "B24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2063,7 +3882,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2078,7 +3903,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2087,7 +3940,11 @@ "sample identifier": "LoP_pool C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2106,7 +3963,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2121,7 +3984,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2130,7 +4021,11 @@ "sample identifier": "LoP_pool C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2149,7 +4044,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2164,7 +4065,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2173,7 +4102,11 @@ "sample identifier": "LoP_pool C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2192,7 +4125,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2207,7 +4146,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2216,7 +4183,11 @@ "sample identifier": "LoP_pool C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2235,7 +4206,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2250,7 +4227,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2259,7 +4264,11 @@ "sample identifier": "LoP_pool C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2278,7 +4287,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2293,7 +4308,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2302,7 +4345,11 @@ "sample identifier": "LoP_pool C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2321,7 +4368,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2336,7 +4389,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2345,7 +4426,11 @@ "sample identifier": "LoP_pool C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2364,7 +4449,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2379,7 +4470,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2388,7 +4507,11 @@ "sample identifier": "LoP_pool C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2407,7 +4530,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2422,7 +4551,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2431,7 +4588,11 @@ "sample identifier": "LoP_pool C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2450,7 +4611,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2465,7 +4632,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2474,7 +4669,11 @@ "sample identifier": "LoP_pool C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2493,7 +4692,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2508,7 +4713,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2517,7 +4750,11 @@ "sample identifier": "LoP_pool C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2536,7 +4773,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2551,7 +4794,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2560,7 +4831,11 @@ "sample identifier": "LoP_pool C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2579,7 +4854,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2594,7 +4875,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2603,7 +4912,11 @@ "sample identifier": "LoP_pool C13", "location identifier": "C13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2622,7 +4935,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2637,7 +4956,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2646,7 +4993,11 @@ "sample identifier": "LoP_pool C14", "location identifier": "C14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2665,7 +5016,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2680,7 +5037,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2689,7 +5074,11 @@ "sample identifier": "LoP_pool C15", "location identifier": "C15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2708,7 +5097,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2723,7 +5118,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2732,7 +5155,11 @@ "sample identifier": "LoP_pool C16", "location identifier": "C16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2751,7 +5178,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2766,7 +5199,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2775,7 +5236,11 @@ "sample identifier": "LoP_pool C17", "location identifier": "C17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2794,7 +5259,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2809,7 +5280,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2818,7 +5317,11 @@ "sample identifier": "LoP_pool C18", "location identifier": "C18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2837,7 +5340,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2852,7 +5361,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2861,7 +5398,11 @@ "sample identifier": "LoP_pool C19", "location identifier": "C19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2880,7 +5421,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2895,7 +5442,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2904,7 +5479,11 @@ "sample identifier": "LoP_pool C20", "location identifier": "C20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2923,7 +5502,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2938,7 +5523,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2947,7 +5560,11 @@ "sample identifier": "LoP_pool C21", "location identifier": "C21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -2966,7 +5583,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -2981,7 +5604,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -2990,7 +5641,11 @@ "sample identifier": "LoP_pool C22", "location identifier": "C22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3009,7 +5664,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3024,7 +5685,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3033,7 +5722,11 @@ "sample identifier": "LoP_pool C23", "location identifier": "C23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3052,7 +5745,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3067,7 +5766,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3076,7 +5803,11 @@ "sample identifier": "LoP_pool C24", "location identifier": "C24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3095,7 +5826,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3110,7 +5847,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3119,7 +5884,11 @@ "sample identifier": "LoP_pool D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3138,7 +5907,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3153,7 +5928,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3162,7 +5965,11 @@ "sample identifier": "LoP_pool D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3181,7 +5988,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3196,7 +6009,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3205,7 +6046,11 @@ "sample identifier": "LoP_pool D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3224,7 +6069,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3239,7 +6090,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3248,7 +6127,11 @@ "sample identifier": "LoP_pool D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3267,7 +6150,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3282,7 +6171,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3291,7 +6208,11 @@ "sample identifier": "LoP_pool D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3310,7 +6231,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3325,7 +6252,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3334,7 +6289,11 @@ "sample identifier": "LoP_pool D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3353,7 +6312,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3368,7 +6333,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3377,7 +6370,11 @@ "sample identifier": "LoP_pool D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3396,7 +6393,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3411,7 +6414,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3420,7 +6451,11 @@ "sample identifier": "LoP_pool D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3439,7 +6474,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3454,7 +6495,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3463,7 +6532,11 @@ "sample identifier": "LoP_pool D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3482,7 +6555,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3497,7 +6576,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3506,7 +6613,11 @@ "sample identifier": "LoP_pool D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3525,7 +6636,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3540,7 +6657,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3549,7 +6694,11 @@ "sample identifier": "LoP_pool D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3568,7 +6717,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3583,7 +6738,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3592,7 +6775,11 @@ "sample identifier": "LoP_pool D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3611,7 +6798,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3626,7 +6819,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3635,7 +6856,11 @@ "sample identifier": "LoP_pool D13", "location identifier": "D13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3654,7 +6879,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3669,7 +6900,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3678,7 +6937,11 @@ "sample identifier": "LoP_pool D14", "location identifier": "D14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3697,7 +6960,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3712,7 +6981,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3721,7 +7018,11 @@ "sample identifier": "LoP_pool D15", "location identifier": "D15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3740,7 +7041,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3755,7 +7062,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3764,7 +7099,11 @@ "sample identifier": "LoP_pool D16", "location identifier": "D16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3783,7 +7122,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3798,7 +7143,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3807,7 +7180,11 @@ "sample identifier": "LoP_pool D17", "location identifier": "D17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3826,7 +7203,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3841,7 +7224,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3850,7 +7261,11 @@ "sample identifier": "LoP_pool D18", "location identifier": "D18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3869,7 +7284,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3884,7 +7305,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3893,7 +7342,11 @@ "sample identifier": "LoP_pool D19", "location identifier": "D19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3912,7 +7365,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3927,7 +7386,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3936,7 +7423,11 @@ "sample identifier": "LoP_pool D20", "location identifier": "D20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3955,7 +7446,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -3970,7 +7467,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -3979,7 +7504,11 @@ "sample identifier": "LoP_pool D21", "location identifier": "D21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -3998,7 +7527,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4013,7 +7548,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4022,7 +7585,11 @@ "sample identifier": "LoP_pool D22", "location identifier": "D22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4041,7 +7608,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4056,7 +7629,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4065,7 +7666,11 @@ "sample identifier": "LoP_pool D23", "location identifier": "D23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4084,7 +7689,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4099,7 +7710,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4108,7 +7747,11 @@ "sample identifier": "LoP_pool D24", "location identifier": "D24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4127,7 +7770,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4142,7 +7791,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4151,7 +7828,11 @@ "sample identifier": "LoP_pool E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4170,7 +7851,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4185,7 +7872,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4194,7 +7909,11 @@ "sample identifier": "LoP_pool E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4213,7 +7932,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4228,7 +7953,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4237,7 +7990,11 @@ "sample identifier": "LoP_pool E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4256,7 +8013,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4271,7 +8034,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4280,7 +8071,11 @@ "sample identifier": "LoP_pool E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4299,7 +8094,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4314,7 +8115,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4323,7 +8152,11 @@ "sample identifier": "LoP_pool E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4342,7 +8175,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4357,7 +8196,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4366,7 +8233,11 @@ "sample identifier": "LoP_pool E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4385,7 +8256,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4400,7 +8277,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4409,7 +8314,11 @@ "sample identifier": "LoP_pool E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4428,7 +8337,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4443,7 +8358,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4452,7 +8395,11 @@ "sample identifier": "LoP_pool E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4471,7 +8418,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4486,7 +8439,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4495,7 +8476,11 @@ "sample identifier": "LoP_pool E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4514,7 +8499,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4529,7 +8520,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4538,7 +8557,11 @@ "sample identifier": "LoP_pool E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4557,7 +8580,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4572,7 +8601,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4581,7 +8638,11 @@ "sample identifier": "LoP_pool E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4600,7 +8661,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4615,7 +8682,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4624,7 +8719,11 @@ "sample identifier": "LoP_pool E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4643,7 +8742,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4658,7 +8763,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4667,7 +8800,11 @@ "sample identifier": "LoP_pool E13", "location identifier": "E13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4686,7 +8823,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4701,7 +8844,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4710,7 +8881,11 @@ "sample identifier": "LoP_pool E14", "location identifier": "E14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4729,7 +8904,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4744,7 +8925,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4753,7 +8962,11 @@ "sample identifier": "LoP_pool E15", "location identifier": "E15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4772,7 +8985,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4787,7 +9006,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4796,7 +9043,11 @@ "sample identifier": "LoP_pool E16", "location identifier": "E16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4815,7 +9066,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4830,7 +9087,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4839,7 +9124,11 @@ "sample identifier": "LoP_pool E17", "location identifier": "E17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4858,7 +9147,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4873,7 +9168,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4882,7 +9205,11 @@ "sample identifier": "LoP_pool E18", "location identifier": "E18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4901,7 +9228,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4916,7 +9249,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4925,7 +9286,11 @@ "sample identifier": "LoP_pool E19", "location identifier": "E19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4944,7 +9309,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -4959,7 +9330,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -4968,7 +9367,11 @@ "sample identifier": "LoP_pool E20", "location identifier": "E20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -4987,7 +9390,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5002,7 +9411,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5011,7 +9448,11 @@ "sample identifier": "LoP_pool E21", "location identifier": "E21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5030,7 +9471,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5045,7 +9492,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5054,7 +9529,11 @@ "sample identifier": "LoP_pool E22", "location identifier": "E22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5073,7 +9552,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5088,7 +9573,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5097,7 +9610,11 @@ "sample identifier": "LoP_pool E23", "location identifier": "E23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5116,7 +9633,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5131,7 +9654,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5140,7 +9691,11 @@ "sample identifier": "LoP_pool E24", "location identifier": "E24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5159,7 +9714,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5174,7 +9735,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5183,7 +9772,11 @@ "sample identifier": "LoP_pool F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5202,7 +9795,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5217,7 +9816,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5226,7 +9853,11 @@ "sample identifier": "LoP_pool F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5245,7 +9876,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5260,7 +9897,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5269,7 +9934,11 @@ "sample identifier": "LoP_pool F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5288,7 +9957,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5303,7 +9978,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5312,7 +10015,11 @@ "sample identifier": "LoP_pool F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5331,7 +10038,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5346,7 +10059,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5355,7 +10096,11 @@ "sample identifier": "LoP_pool F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5374,7 +10119,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5389,7 +10140,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5398,7 +10177,11 @@ "sample identifier": "LoP_pool F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5417,7 +10200,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5432,7 +10221,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5441,7 +10258,11 @@ "sample identifier": "LoP_pool F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5460,7 +10281,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5475,7 +10302,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5484,7 +10339,11 @@ "sample identifier": "LoP_pool F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5503,7 +10362,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5518,7 +10383,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5527,7 +10420,11 @@ "sample identifier": "LoP_pool F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5546,7 +10443,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5561,7 +10464,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5570,7 +10501,11 @@ "sample identifier": "LoP_pool F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5589,7 +10524,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5604,7 +10545,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5613,7 +10582,11 @@ "sample identifier": "LoP_pool F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5632,7 +10605,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5647,7 +10626,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5656,7 +10663,11 @@ "sample identifier": "LoP_pool F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5675,7 +10686,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5690,7 +10707,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5699,7 +10744,11 @@ "sample identifier": "LoP_pool F13", "location identifier": "F13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5718,7 +10767,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5733,7 +10788,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5742,7 +10825,11 @@ "sample identifier": "LoP_pool F14", "location identifier": "F14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5761,7 +10848,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5776,7 +10869,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5785,7 +10906,11 @@ "sample identifier": "LoP_pool F15", "location identifier": "F15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5804,7 +10929,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5819,7 +10950,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5828,7 +10987,11 @@ "sample identifier": "LoP_pool F16", "location identifier": "F16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5847,7 +11010,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5862,7 +11031,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5871,7 +11068,11 @@ "sample identifier": "LoP_pool F17", "location identifier": "F17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5890,7 +11091,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5905,7 +11112,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5914,7 +11149,11 @@ "sample identifier": "LoP_pool F18", "location identifier": "F18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5933,7 +11172,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5948,7 +11193,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -5957,7 +11230,11 @@ "sample identifier": "LoP_pool F19", "location identifier": "F19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -5976,7 +11253,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -5991,7 +11274,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6000,7 +11311,11 @@ "sample identifier": "LoP_pool F20", "location identifier": "F20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6019,7 +11334,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6034,7 +11355,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6043,7 +11392,11 @@ "sample identifier": "LoP_pool F21", "location identifier": "F21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6062,7 +11415,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6077,7 +11436,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6086,7 +11473,11 @@ "sample identifier": "LoP_pool F22", "location identifier": "F22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6105,7 +11496,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6120,7 +11517,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6129,7 +11554,11 @@ "sample identifier": "LoP_pool F23", "location identifier": "F23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6148,7 +11577,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6163,7 +11598,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6172,7 +11635,11 @@ "sample identifier": "LoP_pool F24", "location identifier": "F24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6191,7 +11658,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6206,7 +11679,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6215,7 +11716,11 @@ "sample identifier": "LoP_pool G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6234,7 +11739,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6249,7 +11760,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6258,7 +11797,11 @@ "sample identifier": "LoP_pool G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6277,7 +11820,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6292,7 +11841,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6301,7 +11878,11 @@ "sample identifier": "LoP_pool G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6320,7 +11901,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6335,7 +11922,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6344,7 +11959,11 @@ "sample identifier": "LoP_pool G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6363,7 +11982,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6378,7 +12003,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6387,7 +12040,11 @@ "sample identifier": "LoP_pool G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6406,7 +12063,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6421,7 +12084,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6430,7 +12121,11 @@ "sample identifier": "LoP_pool G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6449,7 +12144,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6464,7 +12165,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6473,7 +12202,11 @@ "sample identifier": "LoP_pool G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6492,7 +12225,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6507,7 +12246,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6516,7 +12283,11 @@ "sample identifier": "LoP_pool G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6535,7 +12306,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6550,7 +12327,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6559,7 +12364,11 @@ "sample identifier": "LoP_pool G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6578,7 +12387,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6593,7 +12408,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6602,7 +12445,11 @@ "sample identifier": "LoP_pool G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6621,7 +12468,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6636,7 +12489,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6645,7 +12526,11 @@ "sample identifier": "LoP_pool G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6664,7 +12549,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6679,7 +12570,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6688,7 +12607,11 @@ "sample identifier": "LoP_pool G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6707,7 +12630,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6722,7 +12651,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6731,7 +12688,11 @@ "sample identifier": "LoP_pool G13", "location identifier": "G13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6750,7 +12711,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6765,7 +12732,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6774,7 +12769,11 @@ "sample identifier": "LoP_pool G14", "location identifier": "G14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6793,7 +12792,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6808,7 +12813,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6817,7 +12850,11 @@ "sample identifier": "LoP_pool G15", "location identifier": "G15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6836,7 +12873,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6851,7 +12894,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6860,7 +12931,11 @@ "sample identifier": "LoP_pool G16", "location identifier": "G16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6879,7 +12954,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6894,7 +12975,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6903,7 +13012,11 @@ "sample identifier": "LoP_pool G17", "location identifier": "G17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6922,7 +13035,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6937,7 +13056,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6946,7 +13093,11 @@ "sample identifier": "LoP_pool G18", "location identifier": "G18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -6965,7 +13116,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -6980,7 +13137,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -6989,7 +13174,11 @@ "sample identifier": "LoP_pool G19", "location identifier": "G19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7008,7 +13197,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7023,7 +13218,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7032,7 +13255,11 @@ "sample identifier": "LoP_pool G20", "location identifier": "G20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7051,7 +13278,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7066,7 +13299,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7075,7 +13336,11 @@ "sample identifier": "LoP_pool G21", "location identifier": "G21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7094,7 +13359,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7109,7 +13380,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7118,7 +13417,11 @@ "sample identifier": "LoP_pool G22", "location identifier": "G22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7137,7 +13440,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7152,7 +13461,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7161,7 +13498,11 @@ "sample identifier": "LoP_pool G23", "location identifier": "G23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7180,7 +13521,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7195,7 +13542,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7204,7 +13579,11 @@ "sample identifier": "LoP_pool G24", "location identifier": "G24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7223,7 +13602,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7238,7 +13623,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7247,7 +13660,11 @@ "sample identifier": "LoP_pool H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7266,7 +13683,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7281,7 +13704,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7290,7 +13741,11 @@ "sample identifier": "LoP_pool H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7309,7 +13764,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7324,7 +13785,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7333,7 +13822,11 @@ "sample identifier": "LoP_pool H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7352,7 +13845,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7367,7 +13866,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7376,7 +13903,11 @@ "sample identifier": "LoP_pool H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7395,7 +13926,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7410,7 +13947,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7419,7 +13984,11 @@ "sample identifier": "LoP_pool H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7438,7 +14007,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7453,7 +14028,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7462,7 +14065,11 @@ "sample identifier": "LoP_pool H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7481,7 +14088,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7496,7 +14109,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7505,7 +14146,11 @@ "sample identifier": "LoP_pool H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7524,7 +14169,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7539,7 +14190,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7548,7 +14227,11 @@ "sample identifier": "LoP_pool H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7567,7 +14250,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7582,7 +14271,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7591,7 +14308,11 @@ "sample identifier": "LoP_pool H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7610,7 +14331,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7625,7 +14352,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7634,7 +14389,11 @@ "sample identifier": "LoP_pool H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7653,7 +14412,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7668,7 +14433,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7677,7 +14470,11 @@ "sample identifier": "LoP_pool H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7696,7 +14493,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7711,7 +14514,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7720,7 +14551,11 @@ "sample identifier": "LoP_pool H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7739,7 +14574,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7754,7 +14595,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7763,7 +14632,11 @@ "sample identifier": "LoP_pool H13", "location identifier": "H13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7782,7 +14655,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7797,7 +14676,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7806,7 +14713,11 @@ "sample identifier": "LoP_pool H14", "location identifier": "H14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7825,7 +14736,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7840,7 +14757,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7849,7 +14794,11 @@ "sample identifier": "LoP_pool H15", "location identifier": "H15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7868,7 +14817,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7883,7 +14838,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7892,7 +14875,11 @@ "sample identifier": "LoP_pool H16", "location identifier": "H16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7911,7 +14898,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7926,7 +14919,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7935,7 +14956,11 @@ "sample identifier": "LoP_pool H17", "location identifier": "H17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7954,7 +14979,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -7969,7 +15000,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -7978,7 +15037,11 @@ "sample identifier": "LoP_pool H18", "location identifier": "H18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -7997,7 +15060,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8012,7 +15081,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8021,7 +15118,11 @@ "sample identifier": "LoP_pool H19", "location identifier": "H19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8040,7 +15141,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8055,7 +15162,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8064,7 +15199,11 @@ "sample identifier": "LoP_pool H20", "location identifier": "H20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8083,7 +15222,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8098,7 +15243,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8107,7 +15280,11 @@ "sample identifier": "LoP_pool H21", "location identifier": "H21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8126,7 +15303,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8141,7 +15324,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8150,7 +15361,11 @@ "sample identifier": "LoP_pool H22", "location identifier": "H22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8169,7 +15384,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8184,7 +15405,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8193,7 +15442,11 @@ "sample identifier": "LoP_pool H23", "location identifier": "H23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8212,7 +15465,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8227,7 +15486,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8236,7 +15523,11 @@ "sample identifier": "LoP_pool H24", "location identifier": "H24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8255,7 +15546,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8270,7 +15567,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8279,7 +15604,11 @@ "sample identifier": "LoP_pool I1", "location identifier": "I1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8298,7 +15627,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8313,7 +15648,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8322,7 +15685,11 @@ "sample identifier": "LoP_pool I2", "location identifier": "I2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8341,7 +15708,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8356,7 +15729,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8365,7 +15766,11 @@ "sample identifier": "LoP_pool I3", "location identifier": "I3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8384,7 +15789,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8399,7 +15810,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8408,7 +15847,11 @@ "sample identifier": "LoP_pool I4", "location identifier": "I4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8427,7 +15870,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8442,7 +15891,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8451,7 +15928,11 @@ "sample identifier": "LoP_pool I5", "location identifier": "I5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8470,7 +15951,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8485,7 +15972,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8494,7 +16009,11 @@ "sample identifier": "LoP_pool I6", "location identifier": "I6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8513,7 +16032,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8528,7 +16053,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8537,7 +16090,11 @@ "sample identifier": "LoP_pool I7", "location identifier": "I7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8556,7 +16113,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8571,7 +16134,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8580,7 +16171,11 @@ "sample identifier": "LoP_pool I8", "location identifier": "I8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8599,7 +16194,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8614,7 +16215,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8623,7 +16252,11 @@ "sample identifier": "LoP_pool I9", "location identifier": "I9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8642,7 +16275,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8657,7 +16296,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8666,7 +16333,11 @@ "sample identifier": "LoP_pool I10", "location identifier": "I10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8685,7 +16356,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8700,7 +16377,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8709,7 +16414,11 @@ "sample identifier": "LoP_pool I11", "location identifier": "I11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8728,7 +16437,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8743,7 +16458,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8752,7 +16495,11 @@ "sample identifier": "LoP_pool I12", "location identifier": "I12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8771,7 +16518,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8786,7 +16539,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8795,7 +16576,11 @@ "sample identifier": "LoP_pool I13", "location identifier": "I13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8814,7 +16599,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8829,7 +16620,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8838,7 +16657,11 @@ "sample identifier": "LoP_pool I14", "location identifier": "I14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8857,7 +16680,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8872,7 +16701,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8881,7 +16738,11 @@ "sample identifier": "LoP_pool I15", "location identifier": "I15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8900,7 +16761,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8915,7 +16782,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8924,7 +16819,11 @@ "sample identifier": "LoP_pool I16", "location identifier": "I16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8943,7 +16842,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -8958,7 +16863,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -8967,7 +16900,11 @@ "sample identifier": "LoP_pool I17", "location identifier": "I17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -8986,7 +16923,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9001,7 +16944,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9010,7 +16981,11 @@ "sample identifier": "LoP_pool I18", "location identifier": "I18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9029,7 +17004,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9044,7 +17025,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9053,7 +17062,11 @@ "sample identifier": "LoP_pool I19", "location identifier": "I19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9072,7 +17085,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9087,7 +17106,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9096,7 +17143,11 @@ "sample identifier": "LoP_pool I20", "location identifier": "I20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9115,7 +17166,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9130,7 +17187,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9139,7 +17224,11 @@ "sample identifier": "LoP_pool I21", "location identifier": "I21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9158,7 +17247,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9173,7 +17268,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9182,7 +17305,11 @@ "sample identifier": "LoP_pool I22", "location identifier": "I22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9201,7 +17328,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9216,7 +17349,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9225,7 +17386,11 @@ "sample identifier": "LoP_pool I23", "location identifier": "I23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9244,7 +17409,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9259,7 +17430,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9268,7 +17467,11 @@ "sample identifier": "LoP_pool I24", "location identifier": "I24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9287,7 +17490,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9302,7 +17511,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9311,7 +17548,11 @@ "sample identifier": "LoP_pool J1", "location identifier": "J1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9330,7 +17571,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9345,7 +17592,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9354,7 +17629,11 @@ "sample identifier": "LoP_pool J2", "location identifier": "J2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9373,7 +17652,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9388,7 +17673,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9397,7 +17710,11 @@ "sample identifier": "LoP_pool J3", "location identifier": "J3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9416,7 +17733,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9431,7 +17754,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9440,7 +17791,11 @@ "sample identifier": "LoP_pool J4", "location identifier": "J4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9459,7 +17814,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9474,7 +17835,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9483,7 +17872,11 @@ "sample identifier": "LoP_pool J5", "location identifier": "J5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9502,7 +17895,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9517,7 +17916,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9526,7 +17953,11 @@ "sample identifier": "LoP_pool J6", "location identifier": "J6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9545,7 +17976,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9560,7 +17997,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9569,7 +18034,11 @@ "sample identifier": "LoP_pool J7", "location identifier": "J7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9588,7 +18057,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9603,7 +18078,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9612,7 +18115,11 @@ "sample identifier": "LoP_pool J8", "location identifier": "J8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9631,7 +18138,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9646,7 +18159,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9655,7 +18196,11 @@ "sample identifier": "LoP_pool J9", "location identifier": "J9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9674,7 +18219,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9689,7 +18240,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9698,7 +18277,11 @@ "sample identifier": "LoP_pool J10", "location identifier": "J10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9717,7 +18300,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9732,7 +18321,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9741,7 +18358,11 @@ "sample identifier": "LoP_pool J11", "location identifier": "J11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9760,7 +18381,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9775,7 +18402,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9784,7 +18439,11 @@ "sample identifier": "LoP_pool J12", "location identifier": "J12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9803,7 +18462,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9818,7 +18483,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9827,7 +18520,11 @@ "sample identifier": "LoP_pool J13", "location identifier": "J13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9846,7 +18543,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9861,7 +18564,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9870,7 +18601,11 @@ "sample identifier": "LoP_pool J14", "location identifier": "J14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9889,7 +18624,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9904,7 +18645,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9913,7 +18682,11 @@ "sample identifier": "LoP_pool J15", "location identifier": "J15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9932,7 +18705,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9947,7 +18726,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9956,7 +18763,11 @@ "sample identifier": "LoP_pool J16", "location identifier": "J16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -9975,7 +18786,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -9990,7 +18807,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -9999,7 +18844,11 @@ "sample identifier": "LoP_pool J17", "location identifier": "J17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10018,7 +18867,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10033,7 +18888,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10042,7 +18925,11 @@ "sample identifier": "LoP_pool J18", "location identifier": "J18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10061,7 +18948,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10076,7 +18969,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10085,7 +19006,11 @@ "sample identifier": "LoP_pool J19", "location identifier": "J19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10104,7 +19029,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10119,7 +19050,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10128,7 +19087,11 @@ "sample identifier": "LoP_pool J20", "location identifier": "J20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10147,7 +19110,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10162,7 +19131,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10171,7 +19168,11 @@ "sample identifier": "LoP_pool J21", "location identifier": "J21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10190,7 +19191,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10205,7 +19212,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10214,7 +19249,11 @@ "sample identifier": "LoP_pool J22", "location identifier": "J22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10233,7 +19272,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10248,7 +19293,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10257,7 +19330,11 @@ "sample identifier": "LoP_pool J23", "location identifier": "J23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10276,7 +19353,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10291,7 +19374,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10300,7 +19411,11 @@ "sample identifier": "LoP_pool J24", "location identifier": "J24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10319,7 +19434,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10334,7 +19455,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10343,7 +19492,11 @@ "sample identifier": "LoP_pool K1", "location identifier": "K1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10362,7 +19515,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10377,7 +19536,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10386,7 +19573,11 @@ "sample identifier": "LoP_pool K2", "location identifier": "K2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10405,7 +19596,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10420,7 +19617,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10429,7 +19654,11 @@ "sample identifier": "LoP_pool K3", "location identifier": "K3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10448,7 +19677,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10463,7 +19698,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10472,7 +19735,11 @@ "sample identifier": "LoP_pool K4", "location identifier": "K4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10491,7 +19758,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10506,7 +19779,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10515,7 +19816,11 @@ "sample identifier": "LoP_pool K5", "location identifier": "K5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10534,7 +19839,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10549,7 +19860,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10558,7 +19897,11 @@ "sample identifier": "LoP_pool K6", "location identifier": "K6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10577,7 +19920,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10592,7 +19941,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10601,7 +19978,11 @@ "sample identifier": "LoP_pool K7", "location identifier": "K7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10620,7 +20001,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10635,7 +20022,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10644,7 +20059,11 @@ "sample identifier": "LoP_pool K8", "location identifier": "K8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10663,7 +20082,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10678,7 +20103,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10687,7 +20140,11 @@ "sample identifier": "LoP_pool K9", "location identifier": "K9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10706,7 +20163,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10721,7 +20184,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10730,7 +20221,11 @@ "sample identifier": "LoP_pool K10", "location identifier": "K10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10749,7 +20244,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10764,7 +20265,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10773,7 +20302,11 @@ "sample identifier": "LoP_pool K11", "location identifier": "K11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10792,7 +20325,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10807,7 +20346,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10816,7 +20383,11 @@ "sample identifier": "LoP_pool K12", "location identifier": "K12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10835,7 +20406,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10850,7 +20427,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10859,7 +20464,11 @@ "sample identifier": "LoP_pool K13", "location identifier": "K13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10878,7 +20487,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10893,7 +20508,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10902,7 +20545,11 @@ "sample identifier": "LoP_pool K14", "location identifier": "K14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10921,7 +20568,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10936,7 +20589,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10945,7 +20626,11 @@ "sample identifier": "LoP_pool K15", "location identifier": "K15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -10964,7 +20649,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -10979,7 +20670,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -10988,7 +20707,11 @@ "sample identifier": "LoP_pool K16", "location identifier": "K16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11007,7 +20730,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11022,7 +20751,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11031,7 +20788,11 @@ "sample identifier": "LoP_pool K17", "location identifier": "K17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11050,7 +20811,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11065,7 +20832,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11074,7 +20869,11 @@ "sample identifier": "LoP_pool K18", "location identifier": "K18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11093,7 +20892,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11108,7 +20913,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11117,7 +20950,11 @@ "sample identifier": "LoP_pool K19", "location identifier": "K19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11136,7 +20973,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11151,7 +20994,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11160,7 +21031,11 @@ "sample identifier": "LoP_pool K20", "location identifier": "K20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11179,7 +21054,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11194,7 +21075,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11203,7 +21112,11 @@ "sample identifier": "LoP_pool K21", "location identifier": "K21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11222,7 +21135,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11237,7 +21156,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11246,7 +21193,11 @@ "sample identifier": "LoP_pool K22", "location identifier": "K22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11265,7 +21216,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11280,7 +21237,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11289,7 +21274,11 @@ "sample identifier": "LoP_pool K23", "location identifier": "K23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11308,7 +21297,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11323,7 +21318,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11332,7 +21355,11 @@ "sample identifier": "LoP_pool K24", "location identifier": "K24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11351,7 +21378,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11366,7 +21399,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11375,7 +21436,11 @@ "sample identifier": "LoP_pool L1", "location identifier": "L1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11394,7 +21459,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11409,7 +21480,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11418,7 +21517,11 @@ "sample identifier": "LoP_pool L2", "location identifier": "L2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11437,7 +21540,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11452,7 +21561,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11461,7 +21598,11 @@ "sample identifier": "LoP_pool L3", "location identifier": "L3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11480,7 +21621,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11495,7 +21642,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11504,7 +21679,11 @@ "sample identifier": "LoP_pool L4", "location identifier": "L4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11523,7 +21702,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11538,7 +21723,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11547,7 +21760,11 @@ "sample identifier": "LoP_pool L5", "location identifier": "L5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11566,7 +21783,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11581,7 +21804,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11590,7 +21841,11 @@ "sample identifier": "LoP_pool L6", "location identifier": "L6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11609,7 +21864,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11624,7 +21885,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11633,7 +21922,11 @@ "sample identifier": "LoP_pool L7", "location identifier": "L7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11652,7 +21945,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11667,7 +21966,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11676,7 +22003,11 @@ "sample identifier": "LoP_pool L8", "location identifier": "L8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11695,7 +22026,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11710,7 +22047,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11719,7 +22084,11 @@ "sample identifier": "LoP_pool L9", "location identifier": "L9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11738,7 +22107,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11753,7 +22128,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11762,7 +22165,11 @@ "sample identifier": "LoP_pool L10", "location identifier": "L10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11781,7 +22188,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11796,7 +22209,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11805,7 +22246,11 @@ "sample identifier": "LoP_pool L11", "location identifier": "L11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11824,7 +22269,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11839,7 +22290,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11848,7 +22327,11 @@ "sample identifier": "LoP_pool L12", "location identifier": "L12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11867,7 +22350,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11882,7 +22371,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11891,7 +22408,11 @@ "sample identifier": "LoP_pool L13", "location identifier": "L13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11910,7 +22431,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11925,7 +22452,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11934,7 +22489,11 @@ "sample identifier": "LoP_pool L14", "location identifier": "L14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11953,7 +22512,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -11968,7 +22533,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -11977,7 +22570,11 @@ "sample identifier": "LoP_pool L15", "location identifier": "L15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -11996,7 +22593,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12011,7 +22614,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12020,7 +22651,11 @@ "sample identifier": "LoP_pool L16", "location identifier": "L16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12039,7 +22674,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12054,7 +22695,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12063,7 +22732,11 @@ "sample identifier": "LoP_pool L17", "location identifier": "L17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12082,7 +22755,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12097,7 +22776,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12106,7 +22813,11 @@ "sample identifier": "LoP_pool L18", "location identifier": "L18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12125,7 +22836,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12140,7 +22857,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12149,7 +22894,11 @@ "sample identifier": "LoP_pool L19", "location identifier": "L19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12168,7 +22917,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12183,7 +22938,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12192,7 +22975,11 @@ "sample identifier": "LoP_pool L20", "location identifier": "L20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12211,7 +22998,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12226,7 +23019,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12235,7 +23056,11 @@ "sample identifier": "LoP_pool L21", "location identifier": "L21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12254,7 +23079,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12269,7 +23100,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12278,7 +23137,11 @@ "sample identifier": "LoP_pool L22", "location identifier": "L22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12297,7 +23160,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12312,7 +23181,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12321,7 +23218,11 @@ "sample identifier": "LoP_pool L23", "location identifier": "L23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12340,7 +23241,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12355,7 +23262,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12364,7 +23299,11 @@ "sample identifier": "LoP_pool L24", "location identifier": "L24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12383,7 +23322,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12398,7 +23343,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12407,7 +23380,11 @@ "sample identifier": "LoP_pool M1", "location identifier": "M1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12426,7 +23403,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12441,7 +23424,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12450,7 +23461,11 @@ "sample identifier": "LoP_pool M2", "location identifier": "M2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12469,7 +23484,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12484,7 +23505,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12493,7 +23542,11 @@ "sample identifier": "LoP_pool M3", "location identifier": "M3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12512,7 +23565,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12527,7 +23586,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12536,7 +23623,11 @@ "sample identifier": "LoP_pool M4", "location identifier": "M4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12555,7 +23646,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12570,7 +23667,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12579,7 +23704,11 @@ "sample identifier": "LoP_pool M5", "location identifier": "M5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12598,7 +23727,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12613,7 +23748,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12622,7 +23785,11 @@ "sample identifier": "LoP_pool M6", "location identifier": "M6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12641,7 +23808,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12656,7 +23829,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12665,7 +23866,11 @@ "sample identifier": "LoP_pool M7", "location identifier": "M7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12684,7 +23889,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12699,7 +23910,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12708,7 +23947,11 @@ "sample identifier": "LoP_pool M8", "location identifier": "M8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12727,7 +23970,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12742,7 +23991,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12751,7 +24028,11 @@ "sample identifier": "LoP_pool M9", "location identifier": "M9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12770,7 +24051,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12785,7 +24072,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12794,7 +24109,11 @@ "sample identifier": "LoP_pool M10", "location identifier": "M10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12813,7 +24132,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12828,7 +24153,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12837,7 +24190,11 @@ "sample identifier": "LoP_pool M11", "location identifier": "M11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12856,7 +24213,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12871,7 +24234,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12880,7 +24271,11 @@ "sample identifier": "LoP_pool M12", "location identifier": "M12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12899,7 +24294,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12914,7 +24315,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12923,7 +24352,11 @@ "sample identifier": "LoP_pool M13", "location identifier": "M13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12942,7 +24375,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -12957,7 +24396,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -12966,7 +24433,11 @@ "sample identifier": "LoP_pool M14", "location identifier": "M14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -12985,7 +24456,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13000,7 +24477,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13009,7 +24514,11 @@ "sample identifier": "LoP_pool M15", "location identifier": "M15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13028,7 +24537,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13043,7 +24558,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13052,7 +24595,11 @@ "sample identifier": "LoP_pool M16", "location identifier": "M16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13071,7 +24618,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13086,7 +24639,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13095,7 +24676,11 @@ "sample identifier": "LoP_pool M17", "location identifier": "M17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13114,7 +24699,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13129,7 +24720,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13138,7 +24757,11 @@ "sample identifier": "LoP_pool M18", "location identifier": "M18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13157,7 +24780,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13172,7 +24801,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13181,7 +24838,11 @@ "sample identifier": "LoP_pool M19", "location identifier": "M19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13200,7 +24861,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13215,7 +24882,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13224,7 +24919,11 @@ "sample identifier": "LoP_pool M20", "location identifier": "M20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13243,7 +24942,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13258,7 +24963,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13267,7 +25000,11 @@ "sample identifier": "LoP_pool M21", "location identifier": "M21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13286,7 +25023,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13301,7 +25044,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13310,7 +25081,11 @@ "sample identifier": "LoP_pool M22", "location identifier": "M22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13329,7 +25104,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13344,7 +25125,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13353,7 +25162,11 @@ "sample identifier": "LoP_pool M23", "location identifier": "M23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13372,7 +25185,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13387,7 +25206,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13396,7 +25243,11 @@ "sample identifier": "LoP_pool M24", "location identifier": "M24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13415,7 +25266,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13430,7 +25287,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13439,7 +25324,11 @@ "sample identifier": "LoP_pool N1", "location identifier": "N1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13458,7 +25347,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13473,7 +25368,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13482,7 +25405,11 @@ "sample identifier": "LoP_pool N2", "location identifier": "N2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13501,7 +25428,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13516,7 +25449,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13525,7 +25486,11 @@ "sample identifier": "LoP_pool N3", "location identifier": "N3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13544,7 +25509,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13559,7 +25530,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13568,7 +25567,11 @@ "sample identifier": "LoP_pool N4", "location identifier": "N4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13587,7 +25590,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13602,7 +25611,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13611,7 +25648,11 @@ "sample identifier": "LoP_pool N5", "location identifier": "N5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13630,7 +25671,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13645,7 +25692,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13654,7 +25729,11 @@ "sample identifier": "LoP_pool N6", "location identifier": "N6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13673,7 +25752,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13688,7 +25773,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13697,7 +25810,11 @@ "sample identifier": "LoP_pool N7", "location identifier": "N7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13716,7 +25833,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13731,7 +25854,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13740,7 +25891,11 @@ "sample identifier": "LoP_pool N8", "location identifier": "N8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13759,7 +25914,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13774,7 +25935,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13783,7 +25972,11 @@ "sample identifier": "LoP_pool N9", "location identifier": "N9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13802,7 +25995,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13817,7 +26016,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13826,7 +26053,11 @@ "sample identifier": "LoP_pool N10", "location identifier": "N10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13845,7 +26076,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13860,7 +26097,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13869,7 +26134,11 @@ "sample identifier": "LoP_pool N11", "location identifier": "N11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13888,7 +26157,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13903,7 +26178,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13912,7 +26215,11 @@ "sample identifier": "LoP_pool N12", "location identifier": "N12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13931,7 +26238,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13946,7 +26259,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13955,7 +26296,11 @@ "sample identifier": "LoP_pool N13", "location identifier": "N13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -13974,7 +26319,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -13989,7 +26340,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -13998,7 +26377,11 @@ "sample identifier": "LoP_pool N14", "location identifier": "N14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14017,7 +26400,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14032,7 +26421,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14041,7 +26458,11 @@ "sample identifier": "LoP_pool N15", "location identifier": "N15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14060,7 +26481,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14075,7 +26502,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14084,7 +26539,11 @@ "sample identifier": "LoP_pool N16", "location identifier": "N16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14103,7 +26562,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14118,7 +26583,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14127,7 +26620,11 @@ "sample identifier": "LoP_pool N17", "location identifier": "N17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14146,7 +26643,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14161,7 +26664,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14170,7 +26701,11 @@ "sample identifier": "LoP_pool N18", "location identifier": "N18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14189,7 +26724,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14204,7 +26745,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14213,7 +26782,11 @@ "sample identifier": "LoP_pool N19", "location identifier": "N19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14232,7 +26805,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14247,7 +26826,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14256,7 +26863,11 @@ "sample identifier": "LoP_pool N20", "location identifier": "N20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14275,7 +26886,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14290,7 +26907,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14299,7 +26944,11 @@ "sample identifier": "LoP_pool N21", "location identifier": "N21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14318,7 +26967,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14333,7 +26988,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14342,7 +27025,11 @@ "sample identifier": "LoP_pool N22", "location identifier": "N22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14361,7 +27048,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14376,7 +27069,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14385,7 +27106,11 @@ "sample identifier": "LoP_pool N23", "location identifier": "N23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14404,7 +27129,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14419,7 +27150,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14428,7 +27187,11 @@ "sample identifier": "LoP_pool N24", "location identifier": "N24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14447,7 +27210,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14462,7 +27231,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14471,7 +27268,11 @@ "sample identifier": "LoP_pool O1", "location identifier": "O1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14490,7 +27291,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14505,7 +27312,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14514,7 +27349,11 @@ "sample identifier": "LoP_pool O2", "location identifier": "O2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14533,7 +27372,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14548,7 +27393,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14557,7 +27430,11 @@ "sample identifier": "LoP_pool O3", "location identifier": "O3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14576,7 +27453,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14591,7 +27474,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14600,7 +27511,11 @@ "sample identifier": "LoP_pool O4", "location identifier": "O4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14619,7 +27534,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14634,7 +27555,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14643,7 +27592,11 @@ "sample identifier": "LoP_pool O5", "location identifier": "O5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14662,7 +27615,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14677,7 +27636,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14686,7 +27673,11 @@ "sample identifier": "LoP_pool O6", "location identifier": "O6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14705,7 +27696,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14720,7 +27717,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14729,7 +27754,11 @@ "sample identifier": "LoP_pool O7", "location identifier": "O7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14748,7 +27777,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14763,7 +27798,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14772,7 +27835,11 @@ "sample identifier": "LoP_pool O8", "location identifier": "O8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14791,7 +27858,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14806,7 +27879,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14815,7 +27916,11 @@ "sample identifier": "LoP_pool O9", "location identifier": "O9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14834,7 +27939,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14849,7 +27960,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14858,7 +27997,11 @@ "sample identifier": "LoP_pool O10", "location identifier": "O10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14877,7 +28020,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14892,7 +28041,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14901,7 +28078,11 @@ "sample identifier": "LoP_pool O11", "location identifier": "O11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14920,7 +28101,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14935,7 +28122,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14944,7 +28159,11 @@ "sample identifier": "LoP_pool O12", "location identifier": "O12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -14963,7 +28182,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -14978,7 +28203,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -14987,7 +28240,11 @@ "sample identifier": "LoP_pool O13", "location identifier": "O13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15006,7 +28263,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15021,7 +28284,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15030,7 +28321,11 @@ "sample identifier": "LoP_pool O14", "location identifier": "O14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15049,7 +28344,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15064,7 +28365,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15073,7 +28402,11 @@ "sample identifier": "LoP_pool O15", "location identifier": "O15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15092,7 +28425,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15107,7 +28446,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15116,7 +28483,11 @@ "sample identifier": "LoP_pool O16", "location identifier": "O16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15135,7 +28506,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15150,7 +28527,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15159,7 +28564,11 @@ "sample identifier": "LoP_pool O17", "location identifier": "O17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15178,7 +28587,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15193,7 +28608,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15202,7 +28645,11 @@ "sample identifier": "LoP_pool O18", "location identifier": "O18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15221,7 +28668,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15236,7 +28689,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15245,7 +28726,11 @@ "sample identifier": "LoP_pool O19", "location identifier": "O19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15264,7 +28749,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15279,7 +28770,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15288,7 +28807,11 @@ "sample identifier": "LoP_pool O20", "location identifier": "O20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15307,7 +28830,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15322,7 +28851,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15331,7 +28888,11 @@ "sample identifier": "LoP_pool O21", "location identifier": "O21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15350,7 +28911,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15365,7 +28932,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15374,7 +28969,11 @@ "sample identifier": "LoP_pool O22", "location identifier": "O22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15393,7 +28992,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15408,7 +29013,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15417,7 +29050,11 @@ "sample identifier": "LoP_pool O23", "location identifier": "O23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15436,7 +29073,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15451,7 +29094,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15460,7 +29131,11 @@ "sample identifier": "LoP_pool O24", "location identifier": "O24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15479,7 +29154,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15494,7 +29175,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15503,7 +29212,11 @@ "sample identifier": "LoP_pool P1", "location identifier": "P1", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15522,7 +29235,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15537,7 +29256,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15546,7 +29293,11 @@ "sample identifier": "LoP_pool P2", "location identifier": "P2", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15565,7 +29316,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15580,7 +29337,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15589,7 +29374,11 @@ "sample identifier": "LoP_pool P3", "location identifier": "P3", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15608,7 +29397,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15623,7 +29418,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15632,7 +29455,11 @@ "sample identifier": "LoP_pool P4", "location identifier": "P4", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15651,7 +29478,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15666,7 +29499,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15675,7 +29536,11 @@ "sample identifier": "LoP_pool P5", "location identifier": "P5", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15694,7 +29559,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15709,7 +29580,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15718,7 +29617,11 @@ "sample identifier": "LoP_pool P6", "location identifier": "P6", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15737,7 +29640,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15752,7 +29661,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15761,7 +29698,11 @@ "sample identifier": "LoP_pool P7", "location identifier": "P7", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15780,7 +29721,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15795,7 +29742,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15804,7 +29779,11 @@ "sample identifier": "LoP_pool P8", "location identifier": "P8", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15823,7 +29802,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15838,7 +29823,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15847,7 +29860,11 @@ "sample identifier": "LoP_pool P9", "location identifier": "P9", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15866,7 +29883,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15881,7 +29904,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15890,7 +29941,11 @@ "sample identifier": "LoP_pool P10", "location identifier": "P10", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15909,7 +29964,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15924,7 +29985,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15933,7 +30022,11 @@ "sample identifier": "LoP_pool P11", "location identifier": "P11", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15952,7 +30045,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -15967,7 +30066,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -15976,7 +30103,11 @@ "sample identifier": "LoP_pool P12", "location identifier": "P12", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -15995,7 +30126,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16010,7 +30147,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16019,7 +30184,11 @@ "sample identifier": "LoP_pool P13", "location identifier": "P13", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16038,7 +30207,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16053,7 +30228,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16062,7 +30265,11 @@ "sample identifier": "LoP_pool P14", "location identifier": "P14", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16081,7 +30288,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16096,7 +30309,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16105,7 +30346,11 @@ "sample identifier": "LoP_pool P15", "location identifier": "P15", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16124,7 +30369,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16139,7 +30390,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16148,7 +30427,11 @@ "sample identifier": "LoP_pool P16", "location identifier": "P16", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16167,7 +30450,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16182,7 +30471,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16191,7 +30508,11 @@ "sample identifier": "LoP_pool P17", "location identifier": "P17", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16210,7 +30531,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16225,7 +30552,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16234,7 +30589,11 @@ "sample identifier": "LoP_pool P18", "location identifier": "P18", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16253,7 +30612,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16268,7 +30633,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16277,7 +30670,11 @@ "sample identifier": "LoP_pool P19", "location identifier": "P19", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16296,7 +30693,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16311,7 +30714,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16320,7 +30751,11 @@ "sample identifier": "LoP_pool P20", "location identifier": "P20", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16339,7 +30774,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16354,7 +30795,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16363,7 +30832,11 @@ "sample identifier": "LoP_pool P21", "location identifier": "P21", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16382,7 +30855,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16397,7 +30876,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16406,7 +30913,11 @@ "sample identifier": "LoP_pool P22", "location identifier": "P22", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16425,7 +30936,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16440,7 +30957,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16449,7 +30994,11 @@ "sample identifier": "LoP_pool P23", "location identifier": "P23", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16468,7 +31017,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } }, { @@ -16483,7 +31038,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.19, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 50.7, + "unit": "%" + }, + "Humidity at end": { + "value": 48.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of columns": 24.0, + "Number of rows": 16.0, + "Height of the plate": "14.4 mm" + } } ] }, @@ -16492,7 +31075,11 @@ "sample identifier": "LoP_pool P24", "location identifier": "P24", "sample role type": "unknown sample role", - "well plate identifier": "LoP_pool" + "well plate identifier": "LoP_pool", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.17, @@ -16511,7 +31098,13 @@ }, "analytical method identifier": "100130", "experimental data identifier": "2801", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Exported": "7/10/2023 2:10:21 PM", + "Assay Finished": "7/10/2023 2:10:21 PM", + "Protocol Name": "GENE AlphaLISA 384 Proxi Final - higher gain", + "Assay Started": "7/10/2023 2:05:28 PM" + } } } ], @@ -16521,7 +31114,7 @@ "file name": "PE_Envision_fluorescence_example03.csv", "UNC path": "tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example03.csv", "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.61", + "ASM converter version": "0.1.105", "software name": "EnVision Workstation", "software version": "1.14.3049.1193" }, diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example04.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example04.json index 8fedcc5ab1..aef65cba20 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example04.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example04.json @@ -14,7 +14,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23,7 +51,12 @@ "sample identifier": "81 A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0, + "Name of the plate type": "384 OptiPlate" + } }, "compartment temperature": { "value": 23.37, @@ -42,7 +75,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -57,7 +96,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -66,7 +133,11 @@ "sample identifier": "81 A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -85,7 +156,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -100,7 +177,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -109,7 +214,11 @@ "sample identifier": "81 A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -128,7 +237,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -143,7 +258,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -152,7 +295,11 @@ "sample identifier": "81 A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -171,7 +318,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -186,7 +339,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -195,7 +376,11 @@ "sample identifier": "81 A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -214,7 +399,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -229,7 +420,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -238,7 +457,11 @@ "sample identifier": "81 A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -257,7 +480,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -272,7 +501,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -281,7 +538,11 @@ "sample identifier": "81 A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -300,7 +561,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -315,7 +582,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -324,7 +619,11 @@ "sample identifier": "81 A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -343,7 +642,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -358,7 +663,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -367,7 +700,11 @@ "sample identifier": "81 A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -386,7 +723,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -401,7 +744,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -410,7 +781,11 @@ "sample identifier": "81 A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -429,7 +804,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -444,7 +825,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -453,7 +862,11 @@ "sample identifier": "81 A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -472,7 +885,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -487,7 +906,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -496,7 +943,11 @@ "sample identifier": "81 A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -515,7 +966,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -530,7 +987,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -539,7 +1024,11 @@ "sample identifier": "81 A13", "location identifier": "A13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -558,7 +1047,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -573,7 +1068,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -582,7 +1105,11 @@ "sample identifier": "81 A14", "location identifier": "A14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -601,7 +1128,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -616,7 +1149,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -625,7 +1186,11 @@ "sample identifier": "81 A15", "location identifier": "A15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -644,7 +1209,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -659,7 +1230,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -668,7 +1267,11 @@ "sample identifier": "81 A16", "location identifier": "A16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -687,7 +1290,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -702,7 +1311,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -711,7 +1348,11 @@ "sample identifier": "81 A17", "location identifier": "A17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -730,7 +1371,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -745,7 +1392,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -754,7 +1429,11 @@ "sample identifier": "81 A18", "location identifier": "A18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -773,7 +1452,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -788,7 +1473,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -797,7 +1510,11 @@ "sample identifier": "81 A19", "location identifier": "A19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -816,7 +1533,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -831,7 +1554,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -840,7 +1591,11 @@ "sample identifier": "81 A20", "location identifier": "A20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -859,7 +1614,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -874,7 +1635,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -883,7 +1672,11 @@ "sample identifier": "81 A21", "location identifier": "A21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -902,7 +1695,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -917,7 +1716,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -926,7 +1753,11 @@ "sample identifier": "81 A22", "location identifier": "A22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -945,7 +1776,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -960,7 +1797,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -969,7 +1834,11 @@ "sample identifier": "81 A23", "location identifier": "A23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -988,7 +1857,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1003,7 +1878,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1012,7 +1915,11 @@ "sample identifier": "81 A24", "location identifier": "A24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1031,7 +1938,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1046,7 +1959,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1055,7 +1996,11 @@ "sample identifier": "81 B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1074,7 +2019,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1089,7 +2040,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1098,7 +2077,11 @@ "sample identifier": "81 B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1117,7 +2100,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1132,7 +2121,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1141,7 +2158,11 @@ "sample identifier": "81 B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1160,7 +2181,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1175,7 +2202,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1184,7 +2239,11 @@ "sample identifier": "81 B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1203,7 +2262,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1218,7 +2283,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1227,7 +2320,11 @@ "sample identifier": "81 B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1246,7 +2343,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1261,7 +2364,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1270,7 +2401,11 @@ "sample identifier": "81 B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1289,7 +2424,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1304,7 +2445,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1313,7 +2482,11 @@ "sample identifier": "81 B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1332,7 +2505,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1347,7 +2526,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1356,7 +2563,11 @@ "sample identifier": "81 B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1375,7 +2586,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1390,7 +2607,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1399,7 +2644,11 @@ "sample identifier": "81 B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1418,7 +2667,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1433,7 +2688,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1442,7 +2725,11 @@ "sample identifier": "81 B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1461,7 +2748,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1476,7 +2769,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1485,7 +2806,11 @@ "sample identifier": "81 B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1504,7 +2829,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1519,7 +2850,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1528,7 +2887,11 @@ "sample identifier": "81 B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1547,7 +2910,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1562,7 +2931,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1571,7 +2968,11 @@ "sample identifier": "81 B13", "location identifier": "B13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1590,7 +2991,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1605,7 +3012,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1614,7 +3049,11 @@ "sample identifier": "81 B14", "location identifier": "B14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1633,7 +3072,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1648,7 +3093,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1657,7 +3130,11 @@ "sample identifier": "81 B15", "location identifier": "B15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1676,7 +3153,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1691,7 +3174,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1700,7 +3211,11 @@ "sample identifier": "81 B16", "location identifier": "B16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1719,7 +3234,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1734,7 +3255,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1743,7 +3292,11 @@ "sample identifier": "81 B17", "location identifier": "B17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1762,7 +3315,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1777,7 +3336,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1786,7 +3373,11 @@ "sample identifier": "81 B18", "location identifier": "B18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1805,7 +3396,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1820,7 +3417,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1829,7 +3454,11 @@ "sample identifier": "81 B19", "location identifier": "B19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1848,7 +3477,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1863,7 +3498,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1872,7 +3535,11 @@ "sample identifier": "81 B20", "location identifier": "B20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1891,7 +3558,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1906,7 +3579,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1915,7 +3616,11 @@ "sample identifier": "81 B21", "location identifier": "B21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1934,7 +3639,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1949,7 +3660,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -1958,7 +3697,11 @@ "sample identifier": "81 B22", "location identifier": "B22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -1977,7 +3720,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -1992,7 +3741,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2001,7 +3778,11 @@ "sample identifier": "81 B23", "location identifier": "B23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2020,7 +3801,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2035,7 +3822,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2044,7 +3859,11 @@ "sample identifier": "81 B24", "location identifier": "B24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2063,7 +3882,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2078,7 +3903,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2087,7 +3940,11 @@ "sample identifier": "81 C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2106,7 +3963,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2121,7 +3984,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2130,7 +4021,11 @@ "sample identifier": "81 C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2149,7 +4044,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2164,7 +4065,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2173,7 +4102,11 @@ "sample identifier": "81 C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2192,7 +4125,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2207,7 +4146,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2216,7 +4183,11 @@ "sample identifier": "81 C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2235,7 +4206,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2250,7 +4227,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2259,7 +4264,11 @@ "sample identifier": "81 C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2278,7 +4287,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2293,7 +4308,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2302,7 +4345,11 @@ "sample identifier": "81 C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2321,7 +4368,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2336,7 +4389,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2345,7 +4426,11 @@ "sample identifier": "81 C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2364,7 +4449,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2379,7 +4470,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2388,7 +4507,11 @@ "sample identifier": "81 C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2407,7 +4530,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2422,7 +4551,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2431,7 +4588,11 @@ "sample identifier": "81 C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2450,7 +4611,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2465,7 +4632,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2474,7 +4669,11 @@ "sample identifier": "81 C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2493,7 +4692,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2508,7 +4713,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2517,7 +4750,11 @@ "sample identifier": "81 C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2536,7 +4773,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2551,7 +4794,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2560,7 +4831,11 @@ "sample identifier": "81 C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2579,7 +4854,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2594,7 +4875,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2603,7 +4912,11 @@ "sample identifier": "81 C13", "location identifier": "C13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2622,7 +4935,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2637,7 +4956,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2646,7 +4993,11 @@ "sample identifier": "81 C14", "location identifier": "C14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2665,7 +5016,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2680,7 +5037,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2689,7 +5074,11 @@ "sample identifier": "81 C15", "location identifier": "C15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2708,7 +5097,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2723,7 +5118,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2732,7 +5155,11 @@ "sample identifier": "81 C16", "location identifier": "C16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2751,7 +5178,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2766,7 +5199,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2775,7 +5236,11 @@ "sample identifier": "81 C17", "location identifier": "C17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2794,7 +5259,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2809,7 +5280,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2818,7 +5317,11 @@ "sample identifier": "81 C18", "location identifier": "C18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2837,7 +5340,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2852,7 +5361,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2861,7 +5398,11 @@ "sample identifier": "81 C19", "location identifier": "C19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2880,7 +5421,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2895,7 +5442,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2904,7 +5479,11 @@ "sample identifier": "81 C20", "location identifier": "C20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2923,7 +5502,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2938,7 +5523,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2947,7 +5560,11 @@ "sample identifier": "81 C21", "location identifier": "C21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -2966,7 +5583,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -2981,7 +5604,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -2990,7 +5641,11 @@ "sample identifier": "81 C22", "location identifier": "C22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3009,7 +5664,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3024,7 +5685,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3033,7 +5722,11 @@ "sample identifier": "81 C23", "location identifier": "C23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3052,7 +5745,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3067,7 +5766,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3076,7 +5803,11 @@ "sample identifier": "81 C24", "location identifier": "C24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3095,7 +5826,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3110,7 +5847,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3119,7 +5884,11 @@ "sample identifier": "81 D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3138,7 +5907,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3153,7 +5928,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3162,7 +5965,11 @@ "sample identifier": "81 D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3181,7 +5988,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3196,7 +6009,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3205,7 +6046,11 @@ "sample identifier": "81 D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3224,7 +6069,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3239,7 +6090,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3248,7 +6127,11 @@ "sample identifier": "81 D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3267,7 +6150,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3282,7 +6171,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3291,7 +6208,11 @@ "sample identifier": "81 D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3310,7 +6231,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3325,7 +6252,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3334,7 +6289,11 @@ "sample identifier": "81 D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3353,7 +6312,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3368,7 +6333,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3377,7 +6370,11 @@ "sample identifier": "81 D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3396,7 +6393,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3411,7 +6414,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3420,7 +6451,11 @@ "sample identifier": "81 D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3439,7 +6474,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3454,7 +6495,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3463,7 +6532,11 @@ "sample identifier": "81 D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3482,7 +6555,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3497,7 +6576,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3506,7 +6613,11 @@ "sample identifier": "81 D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3525,7 +6636,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3540,7 +6657,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3549,7 +6694,11 @@ "sample identifier": "81 D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3568,7 +6717,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3583,7 +6738,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3592,7 +6775,11 @@ "sample identifier": "81 D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3611,7 +6798,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3626,7 +6819,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3635,7 +6856,11 @@ "sample identifier": "81 D13", "location identifier": "D13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3654,7 +6879,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3669,7 +6900,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3678,7 +6937,11 @@ "sample identifier": "81 D14", "location identifier": "D14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3697,7 +6960,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3712,7 +6981,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3721,7 +7018,11 @@ "sample identifier": "81 D15", "location identifier": "D15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3740,7 +7041,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3755,7 +7062,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3764,7 +7099,11 @@ "sample identifier": "81 D16", "location identifier": "D16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3783,7 +7122,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3798,7 +7143,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3807,7 +7180,11 @@ "sample identifier": "81 D17", "location identifier": "D17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3826,7 +7203,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3841,7 +7224,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3850,7 +7261,11 @@ "sample identifier": "81 D18", "location identifier": "D18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3869,7 +7284,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3884,7 +7305,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3893,7 +7342,11 @@ "sample identifier": "81 D19", "location identifier": "D19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3912,7 +7365,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3927,7 +7386,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3936,7 +7423,11 @@ "sample identifier": "81 D20", "location identifier": "D20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3955,7 +7446,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -3970,7 +7467,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -3979,7 +7504,11 @@ "sample identifier": "81 D21", "location identifier": "D21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -3998,7 +7527,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4013,7 +7548,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4022,7 +7585,11 @@ "sample identifier": "81 D22", "location identifier": "D22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4041,7 +7608,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4056,7 +7629,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4065,7 +7666,11 @@ "sample identifier": "81 D23", "location identifier": "D23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4084,7 +7689,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4099,7 +7710,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4108,7 +7747,11 @@ "sample identifier": "81 D24", "location identifier": "D24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4127,7 +7770,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4142,7 +7791,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4151,7 +7828,11 @@ "sample identifier": "81 E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4170,7 +7851,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4185,7 +7872,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4194,7 +7909,11 @@ "sample identifier": "81 E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4213,7 +7932,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4228,7 +7953,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4237,7 +7990,11 @@ "sample identifier": "81 E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4256,7 +8013,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4271,7 +8034,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4280,7 +8071,11 @@ "sample identifier": "81 E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4299,7 +8094,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4314,7 +8115,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4323,7 +8152,11 @@ "sample identifier": "81 E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4342,7 +8175,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4357,7 +8196,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4366,7 +8233,11 @@ "sample identifier": "81 E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4385,7 +8256,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4400,7 +8277,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4409,7 +8314,11 @@ "sample identifier": "81 E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4428,7 +8337,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4443,7 +8358,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4452,7 +8395,11 @@ "sample identifier": "81 E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4471,7 +8418,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4486,7 +8439,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4495,7 +8476,11 @@ "sample identifier": "81 E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4514,7 +8499,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4529,7 +8520,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4538,7 +8557,11 @@ "sample identifier": "81 E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4557,7 +8580,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4572,7 +8601,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4581,7 +8638,11 @@ "sample identifier": "81 E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4600,7 +8661,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4615,7 +8682,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4624,7 +8719,11 @@ "sample identifier": "81 E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4643,7 +8742,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4658,7 +8763,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4667,7 +8800,11 @@ "sample identifier": "81 E13", "location identifier": "E13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4686,7 +8823,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4701,7 +8844,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4710,7 +8881,11 @@ "sample identifier": "81 E14", "location identifier": "E14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4729,7 +8904,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4744,7 +8925,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4753,7 +8962,11 @@ "sample identifier": "81 E15", "location identifier": "E15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4772,7 +8985,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4787,7 +9006,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4796,7 +9043,11 @@ "sample identifier": "81 E16", "location identifier": "E16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4815,7 +9066,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4830,7 +9087,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4839,7 +9124,11 @@ "sample identifier": "81 E17", "location identifier": "E17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4858,7 +9147,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4873,7 +9168,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4882,7 +9205,11 @@ "sample identifier": "81 E18", "location identifier": "E18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4901,7 +9228,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4916,7 +9249,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4925,7 +9286,11 @@ "sample identifier": "81 E19", "location identifier": "E19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4944,7 +9309,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -4959,7 +9330,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -4968,7 +9367,11 @@ "sample identifier": "81 E20", "location identifier": "E20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -4987,7 +9390,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5002,7 +9411,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5011,7 +9448,11 @@ "sample identifier": "81 E21", "location identifier": "E21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5030,7 +9471,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5045,7 +9492,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5054,7 +9529,11 @@ "sample identifier": "81 E22", "location identifier": "E22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5073,7 +9552,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5088,7 +9573,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5097,7 +9610,11 @@ "sample identifier": "81 E23", "location identifier": "E23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5116,7 +9633,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5131,7 +9654,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5140,7 +9691,11 @@ "sample identifier": "81 E24", "location identifier": "E24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5159,7 +9714,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5174,7 +9735,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5183,7 +9772,11 @@ "sample identifier": "81 F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5202,7 +9795,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5217,7 +9816,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5226,7 +9853,11 @@ "sample identifier": "81 F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5245,7 +9876,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5260,7 +9897,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5269,7 +9934,11 @@ "sample identifier": "81 F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5288,7 +9957,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5303,7 +9978,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5312,7 +10015,11 @@ "sample identifier": "81 F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5331,7 +10038,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5346,7 +10059,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5355,7 +10096,11 @@ "sample identifier": "81 F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5374,7 +10119,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5389,7 +10140,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5398,7 +10177,11 @@ "sample identifier": "81 F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5417,7 +10200,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5432,7 +10221,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5441,7 +10258,11 @@ "sample identifier": "81 F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5460,7 +10281,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5475,7 +10302,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5484,7 +10339,11 @@ "sample identifier": "81 F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5503,7 +10362,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5518,7 +10383,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5527,7 +10420,11 @@ "sample identifier": "81 F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5546,7 +10443,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5561,7 +10464,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5570,7 +10501,11 @@ "sample identifier": "81 F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5589,7 +10524,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5604,7 +10545,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5613,7 +10582,11 @@ "sample identifier": "81 F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5632,7 +10605,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5647,7 +10626,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5656,7 +10663,11 @@ "sample identifier": "81 F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5675,7 +10686,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5690,7 +10707,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5699,7 +10744,11 @@ "sample identifier": "81 F13", "location identifier": "F13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5718,7 +10767,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5733,7 +10788,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5742,7 +10825,11 @@ "sample identifier": "81 F14", "location identifier": "F14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5761,7 +10848,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5776,7 +10869,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5785,7 +10906,11 @@ "sample identifier": "81 F15", "location identifier": "F15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5804,7 +10929,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5819,7 +10950,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5828,7 +10987,11 @@ "sample identifier": "81 F16", "location identifier": "F16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5847,7 +11010,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5862,7 +11031,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5871,7 +11068,11 @@ "sample identifier": "81 F17", "location identifier": "F17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5890,7 +11091,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5905,7 +11112,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5914,7 +11149,11 @@ "sample identifier": "81 F18", "location identifier": "F18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5933,7 +11172,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5948,7 +11193,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -5957,7 +11230,11 @@ "sample identifier": "81 F19", "location identifier": "F19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -5976,7 +11253,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -5991,7 +11274,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6000,7 +11311,11 @@ "sample identifier": "81 F20", "location identifier": "F20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6019,7 +11334,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6034,7 +11355,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6043,7 +11392,11 @@ "sample identifier": "81 F21", "location identifier": "F21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6062,7 +11415,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6077,7 +11436,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6086,7 +11473,11 @@ "sample identifier": "81 F22", "location identifier": "F22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6105,7 +11496,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6120,7 +11517,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6129,7 +11554,11 @@ "sample identifier": "81 F23", "location identifier": "F23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6148,7 +11577,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6163,7 +11598,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6172,7 +11635,11 @@ "sample identifier": "81 F24", "location identifier": "F24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6191,7 +11658,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6206,7 +11679,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6215,7 +11716,11 @@ "sample identifier": "81 G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6234,7 +11739,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6249,7 +11760,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6258,7 +11797,11 @@ "sample identifier": "81 G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6277,7 +11820,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6292,7 +11841,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6301,7 +11878,11 @@ "sample identifier": "81 G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6320,7 +11901,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6335,7 +11922,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6344,7 +11959,11 @@ "sample identifier": "81 G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6363,7 +11982,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6378,7 +12003,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6387,7 +12040,11 @@ "sample identifier": "81 G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6406,7 +12063,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6421,7 +12084,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6430,7 +12121,11 @@ "sample identifier": "81 G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6449,7 +12144,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6464,7 +12165,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6473,7 +12202,11 @@ "sample identifier": "81 G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6492,7 +12225,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6507,7 +12246,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6516,7 +12283,11 @@ "sample identifier": "81 G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6535,7 +12306,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6550,7 +12327,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6559,7 +12364,11 @@ "sample identifier": "81 G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6578,7 +12387,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6593,7 +12408,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6602,7 +12445,11 @@ "sample identifier": "81 G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6621,7 +12468,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6636,7 +12489,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6645,7 +12526,11 @@ "sample identifier": "81 G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6664,7 +12549,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6679,7 +12570,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6688,7 +12607,11 @@ "sample identifier": "81 G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6707,7 +12630,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6722,7 +12651,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6731,7 +12688,11 @@ "sample identifier": "81 G13", "location identifier": "G13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6750,7 +12711,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6765,7 +12732,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6774,7 +12769,11 @@ "sample identifier": "81 G14", "location identifier": "G14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6793,7 +12792,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6808,7 +12813,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6817,7 +12850,11 @@ "sample identifier": "81 G15", "location identifier": "G15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6836,7 +12873,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6851,7 +12894,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6860,7 +12931,11 @@ "sample identifier": "81 G16", "location identifier": "G16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6879,7 +12954,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6894,7 +12975,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6903,7 +13012,11 @@ "sample identifier": "81 G17", "location identifier": "G17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6922,7 +13035,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6937,7 +13056,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6946,7 +13093,11 @@ "sample identifier": "81 G18", "location identifier": "G18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -6965,7 +13116,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -6980,7 +13137,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -6989,7 +13174,11 @@ "sample identifier": "81 G19", "location identifier": "G19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7008,7 +13197,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7023,7 +13218,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7032,7 +13255,11 @@ "sample identifier": "81 G20", "location identifier": "G20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7051,7 +13278,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7066,7 +13299,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7075,7 +13336,11 @@ "sample identifier": "81 G21", "location identifier": "G21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7094,7 +13359,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7109,7 +13380,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7118,7 +13417,11 @@ "sample identifier": "81 G22", "location identifier": "G22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7137,7 +13440,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7152,7 +13461,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7161,7 +13498,11 @@ "sample identifier": "81 G23", "location identifier": "G23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7180,7 +13521,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7195,7 +13542,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7204,7 +13579,11 @@ "sample identifier": "81 G24", "location identifier": "G24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7223,7 +13602,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7238,7 +13623,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7247,7 +13660,11 @@ "sample identifier": "81 H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7266,7 +13683,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7281,7 +13704,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7290,7 +13741,11 @@ "sample identifier": "81 H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7309,7 +13764,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7324,7 +13785,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7333,7 +13822,11 @@ "sample identifier": "81 H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7352,7 +13845,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7367,7 +13866,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7376,7 +13903,11 @@ "sample identifier": "81 H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7395,7 +13926,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7410,7 +13947,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7419,7 +13984,11 @@ "sample identifier": "81 H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7438,7 +14007,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7453,7 +14028,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7462,7 +14065,11 @@ "sample identifier": "81 H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7481,7 +14088,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7496,7 +14109,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7505,7 +14146,11 @@ "sample identifier": "81 H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7524,7 +14169,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7539,7 +14190,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7548,7 +14227,11 @@ "sample identifier": "81 H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7567,7 +14250,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7582,7 +14271,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7591,7 +14308,11 @@ "sample identifier": "81 H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7610,7 +14331,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7625,7 +14352,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7634,7 +14389,11 @@ "sample identifier": "81 H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7653,7 +14412,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7668,7 +14433,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7677,7 +14470,11 @@ "sample identifier": "81 H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7696,7 +14493,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7711,7 +14514,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7720,7 +14551,11 @@ "sample identifier": "81 H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7739,7 +14574,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7754,7 +14595,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7763,7 +14632,11 @@ "sample identifier": "81 H13", "location identifier": "H13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7782,7 +14655,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7797,7 +14676,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7806,7 +14713,11 @@ "sample identifier": "81 H14", "location identifier": "H14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7825,7 +14736,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7840,7 +14757,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7849,7 +14794,11 @@ "sample identifier": "81 H15", "location identifier": "H15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7868,7 +14817,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7883,7 +14838,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7892,7 +14875,11 @@ "sample identifier": "81 H16", "location identifier": "H16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7911,7 +14898,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7926,7 +14919,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7935,7 +14956,11 @@ "sample identifier": "81 H17", "location identifier": "H17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7954,7 +14979,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -7969,7 +15000,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -7978,7 +15037,11 @@ "sample identifier": "81 H18", "location identifier": "H18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -7997,7 +15060,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8012,7 +15081,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8021,7 +15118,11 @@ "sample identifier": "81 H19", "location identifier": "H19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8040,7 +15141,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8055,7 +15162,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8064,7 +15199,11 @@ "sample identifier": "81 H20", "location identifier": "H20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8083,7 +15222,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8098,7 +15243,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8107,7 +15280,11 @@ "sample identifier": "81 H21", "location identifier": "H21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8126,7 +15303,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8141,7 +15324,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8150,7 +15361,11 @@ "sample identifier": "81 H22", "location identifier": "H22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8169,7 +15384,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8184,7 +15405,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8193,7 +15442,11 @@ "sample identifier": "81 H23", "location identifier": "H23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8212,7 +15465,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8227,7 +15486,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8236,7 +15523,11 @@ "sample identifier": "81 H24", "location identifier": "H24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8255,7 +15546,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8270,7 +15567,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8279,7 +15604,11 @@ "sample identifier": "81 I1", "location identifier": "I1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8298,7 +15627,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8313,7 +15648,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8322,7 +15685,11 @@ "sample identifier": "81 I2", "location identifier": "I2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8341,7 +15708,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8356,7 +15729,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8365,7 +15766,11 @@ "sample identifier": "81 I3", "location identifier": "I3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8384,7 +15789,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8399,7 +15810,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8408,7 +15847,11 @@ "sample identifier": "81 I4", "location identifier": "I4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8427,7 +15870,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8442,7 +15891,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8451,7 +15928,11 @@ "sample identifier": "81 I5", "location identifier": "I5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8470,7 +15951,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8485,7 +15972,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8494,7 +16009,11 @@ "sample identifier": "81 I6", "location identifier": "I6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8513,7 +16032,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8528,7 +16053,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8537,7 +16090,11 @@ "sample identifier": "81 I7", "location identifier": "I7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8556,7 +16113,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8571,7 +16134,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8580,7 +16171,11 @@ "sample identifier": "81 I8", "location identifier": "I8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8599,7 +16194,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8614,7 +16215,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8623,7 +16252,11 @@ "sample identifier": "81 I9", "location identifier": "I9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8642,7 +16275,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8657,7 +16296,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8666,7 +16333,11 @@ "sample identifier": "81 I10", "location identifier": "I10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8685,7 +16356,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8700,7 +16377,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8709,7 +16414,11 @@ "sample identifier": "81 I11", "location identifier": "I11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8728,7 +16437,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8743,7 +16458,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8752,7 +16495,11 @@ "sample identifier": "81 I12", "location identifier": "I12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8771,7 +16518,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8786,7 +16539,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8795,7 +16576,11 @@ "sample identifier": "81 I13", "location identifier": "I13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8814,7 +16599,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8829,7 +16620,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8838,7 +16657,11 @@ "sample identifier": "81 I14", "location identifier": "I14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8857,7 +16680,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8872,7 +16701,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8881,7 +16738,11 @@ "sample identifier": "81 I15", "location identifier": "I15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8900,7 +16761,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8915,7 +16782,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8924,7 +16819,11 @@ "sample identifier": "81 I16", "location identifier": "I16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8943,7 +16842,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -8958,7 +16863,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -8967,7 +16900,11 @@ "sample identifier": "81 I17", "location identifier": "I17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -8986,7 +16923,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9001,7 +16944,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9010,7 +16981,11 @@ "sample identifier": "81 I18", "location identifier": "I18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9029,7 +17004,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9044,7 +17025,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9053,7 +17062,11 @@ "sample identifier": "81 I19", "location identifier": "I19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9072,7 +17085,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9087,7 +17106,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9096,7 +17143,11 @@ "sample identifier": "81 I20", "location identifier": "I20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9115,7 +17166,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9130,7 +17187,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9139,7 +17224,11 @@ "sample identifier": "81 I21", "location identifier": "I21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9158,7 +17247,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9173,7 +17268,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9182,7 +17305,11 @@ "sample identifier": "81 I22", "location identifier": "I22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9201,7 +17328,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9216,7 +17349,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9225,7 +17386,11 @@ "sample identifier": "81 I23", "location identifier": "I23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9244,7 +17409,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9259,7 +17430,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9268,7 +17467,11 @@ "sample identifier": "81 I24", "location identifier": "I24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9287,7 +17490,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9302,7 +17511,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9311,7 +17548,11 @@ "sample identifier": "81 J1", "location identifier": "J1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9330,7 +17571,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9345,7 +17592,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9354,7 +17629,11 @@ "sample identifier": "81 J2", "location identifier": "J2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9373,7 +17652,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9388,7 +17673,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9397,7 +17710,11 @@ "sample identifier": "81 J3", "location identifier": "J3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9416,7 +17733,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9431,7 +17754,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9440,7 +17791,11 @@ "sample identifier": "81 J4", "location identifier": "J4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9459,7 +17814,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9474,7 +17835,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9483,7 +17872,11 @@ "sample identifier": "81 J5", "location identifier": "J5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9502,7 +17895,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9517,7 +17916,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9526,7 +17953,11 @@ "sample identifier": "81 J6", "location identifier": "J6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9545,7 +17976,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9560,7 +17997,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9569,7 +18034,11 @@ "sample identifier": "81 J7", "location identifier": "J7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9588,7 +18057,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9603,7 +18078,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9612,7 +18115,11 @@ "sample identifier": "81 J8", "location identifier": "J8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9631,7 +18138,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9646,7 +18159,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9655,7 +18196,11 @@ "sample identifier": "81 J9", "location identifier": "J9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9674,7 +18219,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9689,7 +18240,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9698,7 +18277,11 @@ "sample identifier": "81 J10", "location identifier": "J10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9717,7 +18300,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9732,7 +18321,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9741,7 +18358,11 @@ "sample identifier": "81 J11", "location identifier": "J11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9760,7 +18381,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9775,7 +18402,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9784,7 +18439,11 @@ "sample identifier": "81 J12", "location identifier": "J12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9803,7 +18462,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9818,7 +18483,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9827,7 +18520,11 @@ "sample identifier": "81 J13", "location identifier": "J13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9846,7 +18543,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9861,7 +18564,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9870,7 +18601,11 @@ "sample identifier": "81 J14", "location identifier": "J14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9889,7 +18624,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9904,7 +18645,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9913,7 +18682,11 @@ "sample identifier": "81 J15", "location identifier": "J15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9932,7 +18705,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9947,7 +18726,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9956,7 +18763,11 @@ "sample identifier": "81 J16", "location identifier": "J16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -9975,7 +18786,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -9990,7 +18807,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -9999,7 +18844,11 @@ "sample identifier": "81 J17", "location identifier": "J17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10018,7 +18867,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10033,7 +18888,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10042,7 +18925,11 @@ "sample identifier": "81 J18", "location identifier": "J18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10061,7 +18948,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10076,7 +18969,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10085,7 +19006,11 @@ "sample identifier": "81 J19", "location identifier": "J19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10104,7 +19029,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10119,7 +19050,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10128,7 +19087,11 @@ "sample identifier": "81 J20", "location identifier": "J20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10147,7 +19110,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10162,7 +19131,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10171,7 +19168,11 @@ "sample identifier": "81 J21", "location identifier": "J21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10190,7 +19191,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10205,7 +19212,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10214,7 +19249,11 @@ "sample identifier": "81 J22", "location identifier": "J22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10233,7 +19272,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10248,7 +19293,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10257,7 +19330,11 @@ "sample identifier": "81 J23", "location identifier": "J23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10276,7 +19353,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10291,7 +19374,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10300,7 +19411,11 @@ "sample identifier": "81 J24", "location identifier": "J24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10319,7 +19434,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10334,7 +19455,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10343,7 +19492,11 @@ "sample identifier": "81 K1", "location identifier": "K1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10362,7 +19515,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10377,7 +19536,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10386,7 +19573,11 @@ "sample identifier": "81 K2", "location identifier": "K2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10405,7 +19596,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10420,7 +19617,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10429,7 +19654,11 @@ "sample identifier": "81 K3", "location identifier": "K3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10448,7 +19677,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10463,7 +19698,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10472,7 +19735,11 @@ "sample identifier": "81 K4", "location identifier": "K4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10491,7 +19758,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10506,7 +19779,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10515,7 +19816,11 @@ "sample identifier": "81 K5", "location identifier": "K5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10534,7 +19839,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10549,7 +19860,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10558,7 +19897,11 @@ "sample identifier": "81 K6", "location identifier": "K6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10577,7 +19920,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10592,7 +19941,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10601,7 +19978,11 @@ "sample identifier": "81 K7", "location identifier": "K7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10620,7 +20001,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10635,7 +20022,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10644,7 +20059,11 @@ "sample identifier": "81 K8", "location identifier": "K8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10663,7 +20082,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10678,7 +20103,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10687,7 +20140,11 @@ "sample identifier": "81 K9", "location identifier": "K9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10706,7 +20163,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10721,7 +20184,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10730,7 +20221,11 @@ "sample identifier": "81 K10", "location identifier": "K10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10749,7 +20244,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10764,7 +20265,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10773,7 +20302,11 @@ "sample identifier": "81 K11", "location identifier": "K11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10792,7 +20325,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10807,7 +20346,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10816,7 +20383,11 @@ "sample identifier": "81 K12", "location identifier": "K12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10835,7 +20406,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10850,7 +20427,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10859,7 +20464,11 @@ "sample identifier": "81 K13", "location identifier": "K13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10878,7 +20487,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10893,7 +20508,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10902,7 +20545,11 @@ "sample identifier": "81 K14", "location identifier": "K14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10921,7 +20568,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10936,7 +20589,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10945,7 +20626,11 @@ "sample identifier": "81 K15", "location identifier": "K15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -10964,7 +20649,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -10979,7 +20670,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -10988,7 +20707,11 @@ "sample identifier": "81 K16", "location identifier": "K16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11007,7 +20730,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11022,7 +20751,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11031,7 +20788,11 @@ "sample identifier": "81 K17", "location identifier": "K17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11050,7 +20811,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11065,7 +20832,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11074,7 +20869,11 @@ "sample identifier": "81 K18", "location identifier": "K18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11093,7 +20892,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11108,7 +20913,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11117,7 +20950,11 @@ "sample identifier": "81 K19", "location identifier": "K19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11136,7 +20973,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11151,7 +20994,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11160,7 +21031,11 @@ "sample identifier": "81 K20", "location identifier": "K20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11179,7 +21054,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11194,7 +21075,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11203,7 +21112,11 @@ "sample identifier": "81 K21", "location identifier": "K21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11222,7 +21135,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11237,7 +21156,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11246,7 +21193,11 @@ "sample identifier": "81 K22", "location identifier": "K22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11265,7 +21216,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11280,7 +21237,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11289,7 +21274,11 @@ "sample identifier": "81 K23", "location identifier": "K23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11308,7 +21297,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11323,7 +21318,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11332,7 +21355,11 @@ "sample identifier": "81 K24", "location identifier": "K24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11351,7 +21378,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11366,7 +21399,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11375,7 +21436,11 @@ "sample identifier": "81 L1", "location identifier": "L1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11394,7 +21459,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11409,7 +21480,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11418,7 +21517,11 @@ "sample identifier": "81 L2", "location identifier": "L2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11437,7 +21540,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11452,7 +21561,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11461,7 +21598,11 @@ "sample identifier": "81 L3", "location identifier": "L3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11480,7 +21621,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11495,7 +21642,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11504,7 +21679,11 @@ "sample identifier": "81 L4", "location identifier": "L4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11523,7 +21702,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11538,7 +21723,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11547,7 +21760,11 @@ "sample identifier": "81 L5", "location identifier": "L5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11566,7 +21783,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11581,7 +21804,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11590,7 +21841,11 @@ "sample identifier": "81 L6", "location identifier": "L6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11609,7 +21864,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11624,7 +21885,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11633,7 +21922,11 @@ "sample identifier": "81 L7", "location identifier": "L7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11652,7 +21945,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11667,7 +21966,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11676,7 +22003,11 @@ "sample identifier": "81 L8", "location identifier": "L8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11695,7 +22026,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11710,7 +22047,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11719,7 +22084,11 @@ "sample identifier": "81 L9", "location identifier": "L9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11738,7 +22107,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11753,7 +22128,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11762,7 +22165,11 @@ "sample identifier": "81 L10", "location identifier": "L10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11781,7 +22188,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11796,7 +22209,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11805,7 +22246,11 @@ "sample identifier": "81 L11", "location identifier": "L11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11824,7 +22269,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11839,7 +22290,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11848,7 +22327,11 @@ "sample identifier": "81 L12", "location identifier": "L12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11867,7 +22350,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11882,7 +22371,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11891,7 +22408,11 @@ "sample identifier": "81 L13", "location identifier": "L13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11910,7 +22431,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11925,7 +22452,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11934,7 +22489,11 @@ "sample identifier": "81 L14", "location identifier": "L14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11953,7 +22512,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -11968,7 +22533,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -11977,7 +22570,11 @@ "sample identifier": "81 L15", "location identifier": "L15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -11996,7 +22593,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12011,7 +22614,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12020,7 +22651,11 @@ "sample identifier": "81 L16", "location identifier": "L16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12039,7 +22674,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12054,7 +22695,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12063,7 +22732,11 @@ "sample identifier": "81 L17", "location identifier": "L17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12082,7 +22755,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12097,7 +22776,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12106,7 +22813,11 @@ "sample identifier": "81 L18", "location identifier": "L18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12125,7 +22836,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12140,7 +22857,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12149,7 +22894,11 @@ "sample identifier": "81 L19", "location identifier": "L19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12168,7 +22917,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12183,7 +22938,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12192,7 +22975,11 @@ "sample identifier": "81 L20", "location identifier": "L20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12211,7 +22998,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12226,7 +23019,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12235,7 +23056,11 @@ "sample identifier": "81 L21", "location identifier": "L21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12254,7 +23079,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12269,7 +23100,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12278,7 +23137,11 @@ "sample identifier": "81 L22", "location identifier": "L22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12297,7 +23160,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12312,7 +23181,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12321,7 +23218,11 @@ "sample identifier": "81 L23", "location identifier": "L23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12340,7 +23241,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12355,7 +23262,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12364,7 +23299,11 @@ "sample identifier": "81 L24", "location identifier": "L24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12383,7 +23322,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12398,7 +23343,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12407,7 +23380,11 @@ "sample identifier": "81 M1", "location identifier": "M1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12426,7 +23403,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12441,7 +23424,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12450,7 +23461,11 @@ "sample identifier": "81 M2", "location identifier": "M2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12469,7 +23484,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12484,7 +23505,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12493,7 +23542,11 @@ "sample identifier": "81 M3", "location identifier": "M3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12512,7 +23565,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12527,7 +23586,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12536,7 +23623,11 @@ "sample identifier": "81 M4", "location identifier": "M4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12555,7 +23646,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12570,7 +23667,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12579,7 +23704,11 @@ "sample identifier": "81 M5", "location identifier": "M5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12598,7 +23727,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12613,7 +23748,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12622,7 +23785,11 @@ "sample identifier": "81 M6", "location identifier": "M6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12641,7 +23808,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12656,7 +23829,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12665,7 +23866,11 @@ "sample identifier": "81 M7", "location identifier": "M7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12684,7 +23889,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12699,7 +23910,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12708,7 +23947,11 @@ "sample identifier": "81 M8", "location identifier": "M8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12727,7 +23970,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12742,7 +23991,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12751,7 +24028,11 @@ "sample identifier": "81 M9", "location identifier": "M9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12770,7 +24051,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12785,7 +24072,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12794,7 +24109,11 @@ "sample identifier": "81 M10", "location identifier": "M10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12813,7 +24132,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12828,7 +24153,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12837,7 +24190,11 @@ "sample identifier": "81 M11", "location identifier": "M11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12856,7 +24213,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12871,7 +24234,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12880,7 +24271,11 @@ "sample identifier": "81 M12", "location identifier": "M12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12899,7 +24294,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12914,7 +24315,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12923,7 +24352,11 @@ "sample identifier": "81 M13", "location identifier": "M13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12942,7 +24375,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -12957,7 +24396,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -12966,7 +24433,11 @@ "sample identifier": "81 M14", "location identifier": "M14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -12985,7 +24456,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13000,7 +24477,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13009,7 +24514,11 @@ "sample identifier": "81 M15", "location identifier": "M15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13028,7 +24537,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13043,7 +24558,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13052,7 +24595,11 @@ "sample identifier": "81 M16", "location identifier": "M16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13071,7 +24618,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13086,7 +24639,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13095,7 +24676,11 @@ "sample identifier": "81 M17", "location identifier": "M17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13114,7 +24699,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13129,7 +24720,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13138,7 +24757,11 @@ "sample identifier": "81 M18", "location identifier": "M18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13157,7 +24780,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13172,7 +24801,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13181,7 +24838,11 @@ "sample identifier": "81 M19", "location identifier": "M19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13200,7 +24861,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13215,7 +24882,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13224,7 +24919,11 @@ "sample identifier": "81 M20", "location identifier": "M20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13243,7 +24942,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13258,7 +24963,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13267,7 +25000,11 @@ "sample identifier": "81 M21", "location identifier": "M21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13286,7 +25023,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13301,7 +25044,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13310,7 +25081,11 @@ "sample identifier": "81 M22", "location identifier": "M22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13329,7 +25104,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13344,7 +25125,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13353,7 +25162,11 @@ "sample identifier": "81 M23", "location identifier": "M23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13372,7 +25185,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13387,7 +25206,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13396,7 +25243,11 @@ "sample identifier": "81 M24", "location identifier": "M24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13415,7 +25266,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13430,7 +25287,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13439,7 +25324,11 @@ "sample identifier": "81 N1", "location identifier": "N1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13458,7 +25347,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13473,7 +25368,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13482,7 +25405,11 @@ "sample identifier": "81 N2", "location identifier": "N2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13501,7 +25428,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13516,7 +25449,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13525,7 +25486,11 @@ "sample identifier": "81 N3", "location identifier": "N3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13544,7 +25509,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13559,7 +25530,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13568,7 +25567,11 @@ "sample identifier": "81 N4", "location identifier": "N4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13587,7 +25590,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13602,7 +25611,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13611,7 +25648,11 @@ "sample identifier": "81 N5", "location identifier": "N5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13630,7 +25671,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13645,7 +25692,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13654,7 +25729,11 @@ "sample identifier": "81 N6", "location identifier": "N6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13673,7 +25752,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13688,7 +25773,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13697,7 +25810,11 @@ "sample identifier": "81 N7", "location identifier": "N7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13716,7 +25833,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13731,7 +25854,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13740,7 +25891,11 @@ "sample identifier": "81 N8", "location identifier": "N8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13759,7 +25914,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13774,7 +25935,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13783,7 +25972,11 @@ "sample identifier": "81 N9", "location identifier": "N9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13802,7 +25995,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13817,7 +26016,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13826,7 +26053,11 @@ "sample identifier": "81 N10", "location identifier": "N10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13845,7 +26076,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13860,7 +26097,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13869,7 +26134,11 @@ "sample identifier": "81 N11", "location identifier": "N11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13888,7 +26157,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13903,7 +26178,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13912,7 +26215,11 @@ "sample identifier": "81 N12", "location identifier": "N12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13931,7 +26238,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13946,7 +26259,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13955,7 +26296,11 @@ "sample identifier": "81 N13", "location identifier": "N13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -13974,7 +26319,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -13989,7 +26340,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -13998,7 +26377,11 @@ "sample identifier": "81 N14", "location identifier": "N14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14017,7 +26400,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14032,7 +26421,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14041,7 +26458,11 @@ "sample identifier": "81 N15", "location identifier": "N15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14060,7 +26481,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14075,7 +26502,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14084,7 +26539,11 @@ "sample identifier": "81 N16", "location identifier": "N16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14103,7 +26562,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14118,7 +26583,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14127,7 +26620,11 @@ "sample identifier": "81 N17", "location identifier": "N17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14146,7 +26643,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14161,7 +26664,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14170,7 +26701,11 @@ "sample identifier": "81 N18", "location identifier": "N18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14189,7 +26724,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14204,7 +26745,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14213,7 +26782,11 @@ "sample identifier": "81 N19", "location identifier": "N19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14232,7 +26805,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14247,7 +26826,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14256,7 +26863,11 @@ "sample identifier": "81 N20", "location identifier": "N20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14275,7 +26886,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14290,7 +26907,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14299,7 +26944,11 @@ "sample identifier": "81 N21", "location identifier": "N21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14318,7 +26967,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14333,7 +26988,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14342,7 +27025,11 @@ "sample identifier": "81 N22", "location identifier": "N22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14361,7 +27048,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14376,7 +27069,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14385,7 +27106,11 @@ "sample identifier": "81 N23", "location identifier": "N23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14404,7 +27129,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14419,7 +27150,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14428,7 +27187,11 @@ "sample identifier": "81 N24", "location identifier": "N24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14447,7 +27210,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14462,7 +27231,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14471,7 +27268,11 @@ "sample identifier": "81 O1", "location identifier": "O1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14490,7 +27291,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14505,7 +27312,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14514,7 +27349,11 @@ "sample identifier": "81 O2", "location identifier": "O2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14533,7 +27372,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14548,7 +27393,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14557,7 +27430,11 @@ "sample identifier": "81 O3", "location identifier": "O3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14576,7 +27453,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14591,7 +27474,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14600,7 +27511,11 @@ "sample identifier": "81 O4", "location identifier": "O4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14619,7 +27534,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14634,7 +27555,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14643,7 +27592,11 @@ "sample identifier": "81 O5", "location identifier": "O5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14662,7 +27615,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14677,7 +27636,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14686,7 +27673,11 @@ "sample identifier": "81 O6", "location identifier": "O6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14705,7 +27696,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14720,7 +27717,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14729,7 +27754,11 @@ "sample identifier": "81 O7", "location identifier": "O7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14748,7 +27777,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14763,7 +27798,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14772,7 +27835,11 @@ "sample identifier": "81 O8", "location identifier": "O8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14791,7 +27858,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14806,7 +27879,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14815,7 +27916,11 @@ "sample identifier": "81 O9", "location identifier": "O9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14834,7 +27939,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14849,7 +27960,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14858,7 +27997,11 @@ "sample identifier": "81 O10", "location identifier": "O10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14877,7 +28020,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14892,7 +28041,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14901,7 +28078,11 @@ "sample identifier": "81 O11", "location identifier": "O11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14920,7 +28101,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14935,7 +28122,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14944,7 +28159,11 @@ "sample identifier": "81 O12", "location identifier": "O12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -14963,7 +28182,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -14978,7 +28203,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -14987,7 +28240,11 @@ "sample identifier": "81 O13", "location identifier": "O13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15006,7 +28263,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15021,7 +28284,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15030,7 +28321,11 @@ "sample identifier": "81 O14", "location identifier": "O14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15049,7 +28344,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15064,7 +28365,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15073,7 +28402,11 @@ "sample identifier": "81 O15", "location identifier": "O15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15092,7 +28425,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15107,7 +28446,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15116,7 +28483,11 @@ "sample identifier": "81 O16", "location identifier": "O16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15135,7 +28506,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15150,7 +28527,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15159,7 +28564,11 @@ "sample identifier": "81 O17", "location identifier": "O17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15178,7 +28587,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15193,7 +28608,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15202,7 +28645,11 @@ "sample identifier": "81 O18", "location identifier": "O18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15221,7 +28668,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15236,7 +28689,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15245,7 +28726,11 @@ "sample identifier": "81 O19", "location identifier": "O19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15264,7 +28749,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15279,7 +28770,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15288,7 +28807,11 @@ "sample identifier": "81 O20", "location identifier": "O20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15307,7 +28830,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15322,7 +28851,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15331,7 +28888,11 @@ "sample identifier": "81 O21", "location identifier": "O21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15350,7 +28911,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15365,7 +28932,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15374,7 +28969,11 @@ "sample identifier": "81 O22", "location identifier": "O22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15393,7 +28992,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15408,7 +29013,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15417,7 +29050,11 @@ "sample identifier": "81 O23", "location identifier": "O23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15436,7 +29073,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15451,7 +29094,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15460,7 +29131,11 @@ "sample identifier": "81 O24", "location identifier": "O24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15479,7 +29154,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15494,7 +29175,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15503,7 +29212,11 @@ "sample identifier": "81 P1", "location identifier": "P1", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15522,7 +29235,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15537,7 +29256,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15546,7 +29293,11 @@ "sample identifier": "81 P2", "location identifier": "P2", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15565,7 +29316,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15580,7 +29337,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15589,7 +29374,11 @@ "sample identifier": "81 P3", "location identifier": "P3", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15608,7 +29397,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15623,7 +29418,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15632,7 +29455,11 @@ "sample identifier": "81 P4", "location identifier": "P4", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15651,7 +29478,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15666,7 +29499,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15675,7 +29536,11 @@ "sample identifier": "81 P5", "location identifier": "P5", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15694,7 +29559,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15709,7 +29580,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15718,7 +29617,11 @@ "sample identifier": "81 P6", "location identifier": "P6", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15737,7 +29640,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15752,7 +29661,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15761,7 +29698,11 @@ "sample identifier": "81 P7", "location identifier": "P7", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15780,7 +29721,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15795,7 +29742,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15804,7 +29779,11 @@ "sample identifier": "81 P8", "location identifier": "P8", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15823,7 +29802,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15838,7 +29823,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15847,7 +29860,11 @@ "sample identifier": "81 P9", "location identifier": "P9", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15866,7 +29883,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15881,7 +29904,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15890,7 +29941,11 @@ "sample identifier": "81 P10", "location identifier": "P10", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15909,7 +29964,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15924,7 +29985,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15933,7 +30022,11 @@ "sample identifier": "81 P11", "location identifier": "P11", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15952,7 +30045,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -15967,7 +30066,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -15976,7 +30103,11 @@ "sample identifier": "81 P12", "location identifier": "P12", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -15995,7 +30126,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16010,7 +30147,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16019,7 +30184,11 @@ "sample identifier": "81 P13", "location identifier": "P13", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16038,7 +30207,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16053,7 +30228,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16062,7 +30265,11 @@ "sample identifier": "81 P14", "location identifier": "P14", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16081,7 +30288,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16096,7 +30309,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16105,7 +30346,11 @@ "sample identifier": "81 P15", "location identifier": "P15", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16124,7 +30369,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16139,7 +30390,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16148,7 +30427,11 @@ "sample identifier": "81 P16", "location identifier": "P16", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16167,7 +30450,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16182,7 +30471,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16191,7 +30508,11 @@ "sample identifier": "81 P17", "location identifier": "P17", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16210,7 +30531,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16225,7 +30552,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16234,7 +30589,11 @@ "sample identifier": "81 P18", "location identifier": "P18", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16253,7 +30612,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16268,7 +30633,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16277,7 +30670,11 @@ "sample identifier": "81 P19", "location identifier": "P19", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16296,7 +30693,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16311,7 +30714,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16320,7 +30751,11 @@ "sample identifier": "81 P20", "location identifier": "P20", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16339,7 +30774,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16354,7 +30795,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16363,7 +30832,11 @@ "sample identifier": "81 P21", "location identifier": "P21", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16382,7 +30855,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16397,7 +30876,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16406,7 +30913,11 @@ "sample identifier": "81 P22", "location identifier": "P22", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16425,7 +30936,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16440,7 +30957,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16449,7 +30994,11 @@ "sample identifier": "81 P23", "location identifier": "P23", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16468,7 +31017,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16483,7 +31038,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 23.49, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.47, + "unit": "degC" + }, + "Humidity at start": { + "value": 52.5, + "unit": "%" + }, + "Humidity at end": { + "value": 54.3, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16492,7 +31075,11 @@ "sample identifier": "81 P24", "location identifier": "P24", "sample role type": "unknown sample role", - "well plate identifier": "81" + "well plate identifier": "81", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.37, @@ -16511,7 +31098,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16526,7 +31119,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16535,7 +31156,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16554,7 +31179,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16569,7 +31200,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16578,7 +31237,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16597,7 +31260,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16612,7 +31281,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16621,7 +31318,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16640,7 +31341,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16655,7 +31362,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16664,7 +31399,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16683,7 +31422,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16698,7 +31443,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16707,7 +31480,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16726,7 +31503,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16741,7 +31524,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16750,7 +31561,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16769,7 +31584,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16784,7 +31605,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16793,7 +31642,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16812,7 +31665,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16827,7 +31686,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16836,7 +31723,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16855,7 +31746,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16870,7 +31767,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16879,7 +31804,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16898,7 +31827,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16913,7 +31848,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16922,7 +31885,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16941,7 +31908,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16956,7 +31929,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -16965,7 +31966,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16984,7 +31989,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -16999,7 +32010,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17008,7 +32047,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17027,7 +32070,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17042,7 +32091,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17051,7 +32128,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A13", "location identifier": "A13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17070,7 +32151,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17085,7 +32172,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17094,7 +32209,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A14", "location identifier": "A14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17113,7 +32232,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17128,7 +32253,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17137,7 +32290,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A15", "location identifier": "A15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17156,7 +32313,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17171,7 +32334,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17180,7 +32371,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A16", "location identifier": "A16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17199,7 +32394,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17214,7 +32415,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17223,7 +32452,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A17", "location identifier": "A17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17242,7 +32475,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17257,7 +32496,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17266,7 +32533,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A18", "location identifier": "A18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17285,7 +32556,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17300,7 +32577,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17309,7 +32614,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A19", "location identifier": "A19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17328,7 +32637,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17343,7 +32658,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17352,7 +32695,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A20", "location identifier": "A20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17371,7 +32718,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17386,7 +32739,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17395,7 +32776,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A21", "location identifier": "A21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17414,7 +32799,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17429,7 +32820,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17438,7 +32857,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A22", "location identifier": "A22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17457,7 +32880,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17472,7 +32901,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17481,7 +32938,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A23", "location identifier": "A23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17500,7 +32961,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17515,7 +32982,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17524,7 +33019,11 @@ "sample identifier": "8/22/2023 10:46:25 AM A24", "location identifier": "A24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17543,7 +33042,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17558,7 +33063,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17567,7 +33100,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17586,7 +33123,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17601,7 +33144,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17610,7 +33181,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17629,7 +33204,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17644,7 +33225,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17653,7 +33262,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17672,7 +33285,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17687,7 +33306,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17696,7 +33343,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17715,7 +33366,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17730,7 +33387,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17739,7 +33424,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17758,7 +33447,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17773,7 +33468,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17782,7 +33505,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17801,7 +33528,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17816,7 +33549,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17825,7 +33586,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17844,7 +33609,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17859,7 +33630,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17868,7 +33667,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17887,7 +33690,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17902,7 +33711,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17911,7 +33748,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17930,7 +33771,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17945,7 +33792,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17954,7 +33829,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -17973,7 +33852,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -17988,7 +33873,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -17997,7 +33910,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18016,7 +33933,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18031,7 +33954,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18040,7 +33991,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18059,7 +34014,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18074,7 +34035,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18083,7 +34072,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B13", "location identifier": "B13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18102,7 +34095,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18117,7 +34116,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18126,7 +34153,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B14", "location identifier": "B14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18145,7 +34176,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18160,7 +34197,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18169,7 +34234,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B15", "location identifier": "B15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18188,7 +34257,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18203,7 +34278,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18212,7 +34315,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B16", "location identifier": "B16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18231,7 +34338,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18246,7 +34359,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18255,7 +34396,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B17", "location identifier": "B17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18274,7 +34419,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18289,7 +34440,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18298,7 +34477,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B18", "location identifier": "B18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18317,7 +34500,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18332,7 +34521,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18341,7 +34558,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B19", "location identifier": "B19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18360,7 +34581,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18375,7 +34602,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18384,7 +34639,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B20", "location identifier": "B20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18403,7 +34662,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18418,7 +34683,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18427,7 +34720,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B21", "location identifier": "B21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18446,7 +34743,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18461,7 +34764,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18470,7 +34801,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B22", "location identifier": "B22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18489,7 +34824,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18504,7 +34845,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18513,7 +34882,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B23", "location identifier": "B23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18532,7 +34905,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18547,7 +34926,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18556,7 +34963,11 @@ "sample identifier": "8/22/2023 10:46:25 AM B24", "location identifier": "B24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18575,7 +34986,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18590,7 +35007,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18599,7 +35044,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18618,7 +35067,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18633,7 +35088,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18642,7 +35125,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18661,7 +35148,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18676,7 +35169,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18685,7 +35206,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18704,7 +35229,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18719,7 +35250,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18728,7 +35287,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18747,7 +35310,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18762,7 +35331,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18771,7 +35368,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18790,7 +35391,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18805,7 +35412,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18814,7 +35449,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18833,7 +35472,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18848,7 +35493,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18857,7 +35530,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18876,7 +35553,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18891,7 +35574,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18900,7 +35611,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18919,7 +35634,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18934,7 +35655,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18943,7 +35692,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -18962,7 +35715,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -18977,7 +35736,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -18986,7 +35773,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19005,7 +35796,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19020,7 +35817,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19029,7 +35854,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19048,7 +35877,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19063,7 +35898,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19072,7 +35935,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19091,7 +35958,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19106,7 +35979,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19115,7 +36016,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C13", "location identifier": "C13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19134,7 +36039,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19149,7 +36060,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19158,7 +36097,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C14", "location identifier": "C14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19177,7 +36120,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19192,7 +36141,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19201,7 +36178,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C15", "location identifier": "C15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19220,7 +36201,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19235,7 +36222,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19244,7 +36259,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C16", "location identifier": "C16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19263,7 +36282,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19278,7 +36303,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19287,7 +36340,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C17", "location identifier": "C17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19306,7 +36363,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19321,7 +36384,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19330,7 +36421,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C18", "location identifier": "C18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19349,7 +36444,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19364,7 +36465,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19373,7 +36502,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C19", "location identifier": "C19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19392,7 +36525,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19407,7 +36546,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19416,7 +36583,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C20", "location identifier": "C20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19435,7 +36606,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19450,7 +36627,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19459,7 +36664,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C21", "location identifier": "C21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19478,7 +36687,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19493,7 +36708,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19502,7 +36745,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C22", "location identifier": "C22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19521,7 +36768,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19536,7 +36789,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19545,7 +36826,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C23", "location identifier": "C23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19564,7 +36849,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19579,7 +36870,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19588,7 +36907,11 @@ "sample identifier": "8/22/2023 10:46:25 AM C24", "location identifier": "C24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19607,7 +36930,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19622,7 +36951,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19631,7 +36988,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19650,7 +37011,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19665,7 +37032,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19674,7 +37069,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19693,7 +37092,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19708,7 +37113,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19717,7 +37150,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19736,7 +37173,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19751,7 +37194,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19760,7 +37231,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19779,7 +37254,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19794,7 +37275,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19803,7 +37312,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19822,7 +37335,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19837,7 +37356,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19846,7 +37393,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19865,7 +37416,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19880,7 +37437,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19889,7 +37474,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19908,7 +37497,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19923,7 +37518,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19932,7 +37555,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19951,7 +37578,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -19966,7 +37599,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -19975,7 +37636,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -19994,7 +37659,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20009,7 +37680,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20018,7 +37717,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20037,7 +37740,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20052,7 +37761,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20061,7 +37798,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20080,7 +37821,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20095,7 +37842,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20104,7 +37879,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20123,7 +37902,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20138,7 +37923,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20147,7 +37960,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D13", "location identifier": "D13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20166,7 +37983,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20181,7 +38004,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20190,7 +38041,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D14", "location identifier": "D14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20209,7 +38064,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20224,7 +38085,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20233,7 +38122,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D15", "location identifier": "D15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20252,7 +38145,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20267,7 +38166,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20276,7 +38203,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D16", "location identifier": "D16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20295,7 +38226,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20310,7 +38247,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20319,7 +38284,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D17", "location identifier": "D17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20338,7 +38307,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20353,7 +38328,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20362,7 +38365,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D18", "location identifier": "D18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20381,7 +38388,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20396,7 +38409,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20405,7 +38446,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D19", "location identifier": "D19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20424,7 +38469,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20439,7 +38490,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20448,7 +38527,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D20", "location identifier": "D20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20467,7 +38550,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20482,7 +38571,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20491,7 +38608,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D21", "location identifier": "D21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20510,7 +38631,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20525,7 +38652,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20534,7 +38689,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D22", "location identifier": "D22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20553,7 +38712,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20568,7 +38733,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20577,7 +38770,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D23", "location identifier": "D23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20596,7 +38793,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20611,7 +38814,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20620,7 +38851,11 @@ "sample identifier": "8/22/2023 10:46:25 AM D24", "location identifier": "D24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20639,7 +38874,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20654,7 +38895,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20663,7 +38932,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20682,7 +38955,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20697,7 +38976,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20706,7 +39013,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20725,7 +39036,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20740,7 +39057,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20749,7 +39094,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20768,7 +39117,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20783,7 +39138,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20792,7 +39175,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20811,7 +39198,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20826,7 +39219,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20835,7 +39256,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20854,7 +39279,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20869,7 +39300,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20878,7 +39337,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20897,7 +39360,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20912,7 +39381,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20921,7 +39418,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20940,7 +39441,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20955,7 +39462,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -20964,7 +39499,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -20983,7 +39522,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -20998,7 +39543,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21007,7 +39580,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21026,7 +39603,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21041,7 +39624,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21050,7 +39661,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21069,7 +39684,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21084,7 +39705,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21093,7 +39742,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21112,7 +39765,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21127,7 +39786,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21136,7 +39823,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21155,7 +39846,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21170,7 +39867,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21179,7 +39904,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E13", "location identifier": "E13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21198,7 +39927,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21213,7 +39948,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21222,7 +39985,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E14", "location identifier": "E14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21241,7 +40008,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21256,7 +40029,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21265,7 +40066,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E15", "location identifier": "E15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21284,7 +40089,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21299,7 +40110,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21308,7 +40147,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E16", "location identifier": "E16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21327,7 +40170,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21342,7 +40191,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21351,7 +40228,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E17", "location identifier": "E17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21370,7 +40251,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21385,7 +40272,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21394,7 +40309,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E18", "location identifier": "E18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21413,7 +40332,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21428,7 +40353,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21437,7 +40390,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E19", "location identifier": "E19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21456,7 +40413,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21471,7 +40434,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21480,7 +40471,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E20", "location identifier": "E20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21499,7 +40494,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21514,7 +40515,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21523,7 +40552,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E21", "location identifier": "E21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21542,7 +40575,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21557,7 +40596,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21566,7 +40633,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E22", "location identifier": "E22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21585,7 +40656,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21600,7 +40677,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21609,7 +40714,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E23", "location identifier": "E23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21628,7 +40737,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21643,7 +40758,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21652,7 +40795,11 @@ "sample identifier": "8/22/2023 10:46:25 AM E24", "location identifier": "E24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21671,7 +40818,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21686,7 +40839,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21695,7 +40876,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21714,7 +40899,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21729,7 +40920,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21738,7 +40957,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21757,7 +40980,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21772,7 +41001,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21781,7 +41038,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21800,7 +41061,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21815,7 +41082,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21824,7 +41119,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21843,7 +41142,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21858,7 +41163,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21867,7 +41200,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21886,7 +41223,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21901,7 +41244,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21910,7 +41281,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21929,7 +41304,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21944,7 +41325,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21953,7 +41362,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -21972,7 +41385,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -21987,7 +41406,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -21996,7 +41443,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22015,7 +41466,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22030,7 +41487,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22039,7 +41524,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22058,7 +41547,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22073,7 +41568,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22082,7 +41605,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22101,7 +41628,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22116,7 +41649,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22125,7 +41686,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22144,7 +41709,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22159,7 +41730,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22168,7 +41767,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22187,7 +41790,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22202,7 +41811,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22211,7 +41848,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F13", "location identifier": "F13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22230,7 +41871,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22245,7 +41892,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22254,7 +41929,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F14", "location identifier": "F14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22273,7 +41952,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22288,7 +41973,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22297,7 +42010,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F15", "location identifier": "F15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22316,7 +42033,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22331,7 +42054,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22340,7 +42091,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F16", "location identifier": "F16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22359,7 +42114,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22374,7 +42135,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22383,7 +42172,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F17", "location identifier": "F17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22402,7 +42195,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22417,7 +42216,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22426,7 +42253,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F18", "location identifier": "F18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22445,7 +42276,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22460,7 +42297,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22469,7 +42334,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F19", "location identifier": "F19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22488,7 +42357,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22503,7 +42378,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22512,7 +42415,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F20", "location identifier": "F20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22531,7 +42438,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22546,7 +42459,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22555,7 +42496,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F21", "location identifier": "F21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22574,7 +42519,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22589,7 +42540,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22598,7 +42577,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F22", "location identifier": "F22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22617,7 +42600,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22632,7 +42621,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22641,7 +42658,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F23", "location identifier": "F23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22660,7 +42681,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22675,7 +42702,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22684,7 +42739,11 @@ "sample identifier": "8/22/2023 10:46:25 AM F24", "location identifier": "F24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22703,7 +42762,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22718,7 +42783,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22727,7 +42820,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22746,7 +42843,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22761,7 +42864,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22770,7 +42901,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22789,7 +42924,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22804,7 +42945,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22813,7 +42982,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22832,7 +43005,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22847,7 +43026,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22856,7 +43063,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22875,7 +43086,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22890,7 +43107,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22899,7 +43144,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22918,7 +43167,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22933,7 +43188,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22942,7 +43225,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -22961,7 +43248,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -22976,7 +43269,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -22985,7 +43306,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23004,7 +43329,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23019,7 +43350,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23028,7 +43387,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23047,7 +43410,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23062,7 +43431,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23071,7 +43468,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23090,7 +43491,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23105,7 +43512,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23114,7 +43549,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23133,7 +43572,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23148,7 +43593,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23157,7 +43630,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23176,7 +43653,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23191,7 +43674,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23200,7 +43711,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23219,7 +43734,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23234,7 +43755,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23243,7 +43792,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G13", "location identifier": "G13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23262,7 +43815,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23277,7 +43836,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23286,7 +43873,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G14", "location identifier": "G14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23305,7 +43896,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23320,7 +43917,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23329,7 +43954,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G15", "location identifier": "G15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23348,7 +43977,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23363,7 +43998,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23372,7 +44035,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G16", "location identifier": "G16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23391,7 +44058,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23406,7 +44079,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23415,7 +44116,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G17", "location identifier": "G17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23434,7 +44139,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23449,7 +44160,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23458,7 +44197,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G18", "location identifier": "G18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23477,7 +44220,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23492,7 +44241,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23501,7 +44278,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G19", "location identifier": "G19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23520,7 +44301,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23535,7 +44322,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23544,7 +44359,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G20", "location identifier": "G20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23563,7 +44382,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23578,7 +44403,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23587,7 +44440,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G21", "location identifier": "G21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23606,7 +44463,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23621,7 +44484,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23630,7 +44521,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G22", "location identifier": "G22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23649,7 +44544,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23664,7 +44565,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23673,7 +44602,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G23", "location identifier": "G23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23692,7 +44625,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23707,7 +44646,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23716,7 +44683,11 @@ "sample identifier": "8/22/2023 10:46:25 AM G24", "location identifier": "G24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23735,7 +44706,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23750,7 +44727,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23759,7 +44764,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23778,7 +44787,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23793,7 +44808,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23802,7 +44845,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23821,7 +44868,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23836,7 +44889,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23845,7 +44926,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23864,7 +44949,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23879,7 +44970,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23888,7 +45007,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23907,7 +45030,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23922,7 +45051,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23931,7 +45088,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23950,7 +45111,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -23965,7 +45132,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -23974,7 +45169,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -23993,7 +45192,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24008,7 +45213,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24017,7 +45250,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24036,7 +45273,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24051,7 +45294,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24060,7 +45331,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24079,7 +45354,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24094,7 +45375,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24103,7 +45412,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24122,7 +45435,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24137,7 +45456,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24146,7 +45493,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24165,7 +45516,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24180,7 +45537,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24189,7 +45574,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24208,7 +45597,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24223,7 +45618,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24232,7 +45655,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24251,7 +45678,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24266,7 +45699,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24275,7 +45736,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H13", "location identifier": "H13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24294,7 +45759,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24309,7 +45780,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24318,7 +45817,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H14", "location identifier": "H14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24337,7 +45840,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24352,7 +45861,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24361,7 +45898,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H15", "location identifier": "H15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24380,7 +45921,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24395,7 +45942,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24404,7 +45979,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H16", "location identifier": "H16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24423,7 +46002,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24438,7 +46023,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24447,7 +46060,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H17", "location identifier": "H17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24466,7 +46083,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24481,7 +46104,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24490,7 +46141,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H18", "location identifier": "H18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24509,7 +46164,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24524,7 +46185,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24533,7 +46222,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H19", "location identifier": "H19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24552,7 +46245,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24567,7 +46266,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24576,7 +46303,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H20", "location identifier": "H20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24595,7 +46326,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24610,7 +46347,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24619,7 +46384,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H21", "location identifier": "H21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24638,7 +46407,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24653,7 +46428,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24662,7 +46465,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H22", "location identifier": "H22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24681,7 +46488,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24696,7 +46509,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24705,7 +46546,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H23", "location identifier": "H23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24724,7 +46569,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24739,7 +46590,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24748,7 +46627,11 @@ "sample identifier": "8/22/2023 10:46:25 AM H24", "location identifier": "H24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24767,7 +46650,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24782,7 +46671,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24791,7 +46708,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I1", "location identifier": "I1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24810,7 +46731,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24825,7 +46752,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24834,7 +46789,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I2", "location identifier": "I2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24853,7 +46812,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24868,7 +46833,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24877,7 +46870,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I3", "location identifier": "I3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24896,7 +46893,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24911,7 +46914,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24920,7 +46951,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I4", "location identifier": "I4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24939,7 +46974,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24954,7 +46995,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -24963,7 +47032,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I5", "location identifier": "I5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -24982,7 +47055,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -24997,7 +47076,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25006,7 +47113,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I6", "location identifier": "I6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25025,7 +47136,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25040,7 +47157,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25049,7 +47194,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I7", "location identifier": "I7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25068,7 +47217,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25083,7 +47238,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25092,7 +47275,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I8", "location identifier": "I8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25111,7 +47298,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25126,7 +47319,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25135,7 +47356,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I9", "location identifier": "I9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25154,7 +47379,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25169,7 +47400,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25178,7 +47437,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I10", "location identifier": "I10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25197,7 +47460,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25212,7 +47481,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25221,7 +47518,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I11", "location identifier": "I11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25240,7 +47541,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25255,7 +47562,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25264,7 +47599,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I12", "location identifier": "I12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25283,7 +47622,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25298,7 +47643,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25307,7 +47680,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I13", "location identifier": "I13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25326,7 +47703,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25341,7 +47724,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25350,7 +47761,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I14", "location identifier": "I14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25369,7 +47784,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25384,7 +47805,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25393,7 +47842,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I15", "location identifier": "I15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25412,7 +47865,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25427,7 +47886,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25436,7 +47923,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I16", "location identifier": "I16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25455,7 +47946,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25470,7 +47967,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25479,7 +48004,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I17", "location identifier": "I17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25498,7 +48027,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25513,7 +48048,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25522,7 +48085,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I18", "location identifier": "I18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25541,7 +48108,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25556,7 +48129,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25565,7 +48166,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I19", "location identifier": "I19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25584,7 +48189,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25599,7 +48210,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25608,7 +48247,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I20", "location identifier": "I20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25627,7 +48270,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25642,7 +48291,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25651,7 +48328,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I21", "location identifier": "I21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25670,7 +48351,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25685,7 +48372,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25694,7 +48409,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I22", "location identifier": "I22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25713,7 +48432,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25728,7 +48453,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25737,7 +48490,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I23", "location identifier": "I23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25756,7 +48513,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25771,7 +48534,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25780,7 +48571,11 @@ "sample identifier": "8/22/2023 10:46:25 AM I24", "location identifier": "I24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25799,7 +48594,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25814,7 +48615,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25823,7 +48652,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J1", "location identifier": "J1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25842,7 +48675,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25857,7 +48696,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25866,7 +48733,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J2", "location identifier": "J2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25885,7 +48756,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25900,7 +48777,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25909,7 +48814,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J3", "location identifier": "J3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25928,7 +48837,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25943,7 +48858,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25952,7 +48895,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J4", "location identifier": "J4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -25971,7 +48918,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -25986,7 +48939,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -25995,7 +48976,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J5", "location identifier": "J5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26014,7 +48999,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26029,7 +49020,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26038,7 +49057,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J6", "location identifier": "J6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26057,7 +49080,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26072,7 +49101,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26081,7 +49138,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J7", "location identifier": "J7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26100,7 +49161,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26115,7 +49182,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26124,7 +49219,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J8", "location identifier": "J8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26143,7 +49242,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26158,7 +49263,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26167,7 +49300,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J9", "location identifier": "J9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26186,7 +49323,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26201,7 +49344,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26210,7 +49381,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J10", "location identifier": "J10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26229,7 +49404,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26244,7 +49425,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26253,7 +49462,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J11", "location identifier": "J11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26272,7 +49485,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26287,7 +49506,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26296,7 +49543,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J12", "location identifier": "J12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26315,7 +49566,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26330,7 +49587,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26339,7 +49624,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J13", "location identifier": "J13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26358,7 +49647,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26373,7 +49668,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26382,7 +49705,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J14", "location identifier": "J14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26401,7 +49728,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26416,7 +49749,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26425,7 +49786,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J15", "location identifier": "J15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26444,7 +49809,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26459,7 +49830,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26468,7 +49867,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J16", "location identifier": "J16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26487,7 +49890,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26502,7 +49911,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26511,7 +49948,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J17", "location identifier": "J17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26530,7 +49971,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26545,7 +49992,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26554,7 +50029,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J18", "location identifier": "J18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26573,7 +50052,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26588,7 +50073,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26597,7 +50110,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J19", "location identifier": "J19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26616,7 +50133,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26631,7 +50154,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26640,7 +50191,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J20", "location identifier": "J20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26659,7 +50214,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26674,7 +50235,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26683,7 +50272,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J21", "location identifier": "J21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26702,7 +50295,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26717,7 +50316,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26726,7 +50353,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J22", "location identifier": "J22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26745,7 +50376,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26760,7 +50397,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26769,7 +50434,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J23", "location identifier": "J23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26788,7 +50457,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26803,7 +50478,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26812,7 +50515,11 @@ "sample identifier": "8/22/2023 10:46:25 AM J24", "location identifier": "J24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26831,7 +50538,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26846,7 +50559,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26855,7 +50596,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K1", "location identifier": "K1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26874,7 +50619,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26889,7 +50640,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26898,7 +50677,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K2", "location identifier": "K2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26917,7 +50700,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26932,7 +50721,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26941,7 +50758,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K3", "location identifier": "K3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -26960,7 +50781,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -26975,7 +50802,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -26984,7 +50839,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K4", "location identifier": "K4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27003,7 +50862,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27018,7 +50883,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27027,7 +50920,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K5", "location identifier": "K5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27046,7 +50943,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27061,7 +50964,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27070,7 +51001,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K6", "location identifier": "K6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27089,7 +51024,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27104,7 +51045,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27113,7 +51082,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K7", "location identifier": "K7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27132,7 +51105,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27147,7 +51126,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27156,7 +51163,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K8", "location identifier": "K8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27175,7 +51186,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27190,7 +51207,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27199,7 +51244,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K9", "location identifier": "K9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27218,7 +51267,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27233,7 +51288,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27242,7 +51325,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K10", "location identifier": "K10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27261,7 +51348,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27276,7 +51369,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27285,7 +51406,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K11", "location identifier": "K11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27304,7 +51429,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27319,7 +51450,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27328,7 +51487,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K12", "location identifier": "K12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27347,7 +51510,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27362,7 +51531,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27371,7 +51568,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K13", "location identifier": "K13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27390,7 +51591,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27405,7 +51612,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27414,7 +51649,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K14", "location identifier": "K14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27433,7 +51672,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27448,7 +51693,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27457,7 +51730,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K15", "location identifier": "K15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27476,7 +51753,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27491,7 +51774,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27500,7 +51811,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K16", "location identifier": "K16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27519,7 +51834,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27534,7 +51855,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27543,7 +51892,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K17", "location identifier": "K17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27562,7 +51915,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27577,7 +51936,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27586,7 +51973,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K18", "location identifier": "K18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27605,7 +51996,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27620,7 +52017,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27629,7 +52054,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K19", "location identifier": "K19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27648,7 +52077,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27663,7 +52098,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27672,7 +52135,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K20", "location identifier": "K20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27691,7 +52158,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27706,7 +52179,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27715,7 +52216,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K21", "location identifier": "K21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27734,7 +52239,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27749,7 +52260,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27758,7 +52297,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K22", "location identifier": "K22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27777,7 +52320,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27792,7 +52341,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27801,7 +52378,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K23", "location identifier": "K23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27820,7 +52401,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27835,7 +52422,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27844,7 +52459,11 @@ "sample identifier": "8/22/2023 10:46:25 AM K24", "location identifier": "K24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27863,7 +52482,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27878,7 +52503,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27887,7 +52540,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L1", "location identifier": "L1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27906,7 +52563,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27921,7 +52584,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27930,7 +52621,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L2", "location identifier": "L2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27949,7 +52644,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -27964,7 +52665,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -27973,7 +52702,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L3", "location identifier": "L3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -27992,7 +52725,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28007,7 +52746,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28016,7 +52783,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L4", "location identifier": "L4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28035,7 +52806,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28050,7 +52827,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28059,7 +52864,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L5", "location identifier": "L5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28078,7 +52887,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28093,7 +52908,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28102,7 +52945,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L6", "location identifier": "L6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28121,7 +52968,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28136,7 +52989,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28145,7 +53026,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L7", "location identifier": "L7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28164,7 +53049,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28179,7 +53070,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28188,7 +53107,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L8", "location identifier": "L8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28207,7 +53130,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28222,7 +53151,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28231,7 +53188,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L9", "location identifier": "L9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28250,7 +53211,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28265,7 +53232,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28274,7 +53269,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L10", "location identifier": "L10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28293,7 +53292,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28308,7 +53313,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28317,7 +53350,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L11", "location identifier": "L11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28336,7 +53373,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28351,7 +53394,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28360,7 +53431,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L12", "location identifier": "L12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28379,7 +53454,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28394,7 +53475,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28403,7 +53512,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L13", "location identifier": "L13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28422,7 +53535,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28437,7 +53556,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28446,7 +53593,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L14", "location identifier": "L14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28465,7 +53616,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28480,7 +53637,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28489,7 +53674,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L15", "location identifier": "L15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28508,7 +53697,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28523,7 +53718,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28532,7 +53755,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L16", "location identifier": "L16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28551,7 +53778,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28566,7 +53799,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28575,7 +53836,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L17", "location identifier": "L17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28594,7 +53859,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28609,7 +53880,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28618,7 +53917,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L18", "location identifier": "L18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28637,7 +53940,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28652,7 +53961,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28661,7 +53998,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L19", "location identifier": "L19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28680,7 +54021,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28695,7 +54042,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28704,7 +54079,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L20", "location identifier": "L20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28723,7 +54102,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28738,7 +54123,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28747,7 +54160,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L21", "location identifier": "L21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28766,7 +54183,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28781,7 +54204,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28790,7 +54241,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L22", "location identifier": "L22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28809,7 +54264,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28824,7 +54285,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28833,7 +54322,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L23", "location identifier": "L23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28852,7 +54345,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28867,7 +54366,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28876,7 +54403,11 @@ "sample identifier": "8/22/2023 10:46:25 AM L24", "location identifier": "L24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28895,7 +54426,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28910,7 +54447,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28919,7 +54484,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M1", "location identifier": "M1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28938,7 +54507,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28953,7 +54528,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -28962,7 +54565,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M2", "location identifier": "M2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -28981,7 +54588,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -28996,7 +54609,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29005,7 +54646,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M3", "location identifier": "M3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29024,7 +54669,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29039,7 +54690,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29048,7 +54727,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M4", "location identifier": "M4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29067,7 +54750,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29082,7 +54771,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29091,7 +54808,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M5", "location identifier": "M5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29110,7 +54831,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29125,7 +54852,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29134,7 +54889,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M6", "location identifier": "M6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29153,7 +54912,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29168,7 +54933,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29177,7 +54970,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M7", "location identifier": "M7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29196,7 +54993,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29211,7 +55014,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29220,7 +55051,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M8", "location identifier": "M8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29239,7 +55074,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29254,7 +55095,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29263,7 +55132,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M9", "location identifier": "M9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29282,7 +55155,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29297,7 +55176,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29306,7 +55213,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M10", "location identifier": "M10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29325,7 +55236,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29340,7 +55257,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29349,7 +55294,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M11", "location identifier": "M11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29368,7 +55317,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29383,7 +55338,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29392,7 +55375,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M12", "location identifier": "M12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29411,7 +55398,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29426,7 +55419,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29435,7 +55456,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M13", "location identifier": "M13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29454,7 +55479,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29469,7 +55500,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29478,7 +55537,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M14", "location identifier": "M14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29497,7 +55560,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29512,7 +55581,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29521,7 +55618,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M15", "location identifier": "M15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29540,7 +55641,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29555,7 +55662,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29564,7 +55699,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M16", "location identifier": "M16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29583,7 +55722,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29598,7 +55743,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29607,7 +55780,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M17", "location identifier": "M17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29626,7 +55803,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29641,7 +55824,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29650,7 +55861,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M18", "location identifier": "M18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29669,7 +55884,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29684,7 +55905,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29693,7 +55942,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M19", "location identifier": "M19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29712,7 +55965,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29727,7 +55986,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29736,7 +56023,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M20", "location identifier": "M20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29755,7 +56046,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29770,7 +56067,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29779,7 +56104,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M21", "location identifier": "M21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29798,7 +56127,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29813,7 +56148,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29822,7 +56185,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M22", "location identifier": "M22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29841,7 +56208,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29856,7 +56229,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29865,7 +56266,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M23", "location identifier": "M23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29884,7 +56289,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29899,7 +56310,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29908,7 +56347,11 @@ "sample identifier": "8/22/2023 10:46:25 AM M24", "location identifier": "M24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29927,7 +56370,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29942,7 +56391,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29951,7 +56428,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N1", "location identifier": "N1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -29970,7 +56451,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -29985,7 +56472,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -29994,7 +56509,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N2", "location identifier": "N2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30013,7 +56532,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30028,7 +56553,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30037,7 +56590,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N3", "location identifier": "N3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30056,7 +56613,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30071,7 +56634,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30080,7 +56671,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N4", "location identifier": "N4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30099,7 +56694,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30114,7 +56715,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30123,7 +56752,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N5", "location identifier": "N5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30142,7 +56775,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30157,7 +56796,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30166,7 +56833,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N6", "location identifier": "N6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30185,7 +56856,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30200,7 +56877,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30209,7 +56914,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N7", "location identifier": "N7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30228,7 +56937,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30243,7 +56958,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30252,7 +56995,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N8", "location identifier": "N8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30271,7 +57018,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30286,7 +57039,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30295,7 +57076,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N9", "location identifier": "N9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30314,7 +57099,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30329,7 +57120,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30338,7 +57157,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N10", "location identifier": "N10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30357,7 +57180,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30372,7 +57201,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30381,7 +57238,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N11", "location identifier": "N11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30400,7 +57261,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30415,7 +57282,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30424,7 +57319,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N12", "location identifier": "N12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30443,7 +57342,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30458,7 +57363,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30467,7 +57400,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N13", "location identifier": "N13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30486,7 +57423,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30501,7 +57444,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30510,7 +57481,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N14", "location identifier": "N14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30529,7 +57504,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30544,7 +57525,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30553,7 +57562,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N15", "location identifier": "N15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30572,7 +57585,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30587,7 +57606,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30596,7 +57643,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N16", "location identifier": "N16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30615,7 +57666,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30630,7 +57687,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30639,7 +57724,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N17", "location identifier": "N17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30658,7 +57747,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30673,7 +57768,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30682,7 +57805,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N18", "location identifier": "N18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30701,7 +57828,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30716,7 +57849,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30725,7 +57886,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N19", "location identifier": "N19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30744,7 +57909,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30759,7 +57930,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30768,7 +57967,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N20", "location identifier": "N20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30787,7 +57990,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30802,7 +58011,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30811,7 +58048,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N21", "location identifier": "N21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30830,7 +58071,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30845,7 +58092,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30854,7 +58129,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N22", "location identifier": "N22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30873,7 +58152,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30888,7 +58173,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30897,7 +58210,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N23", "location identifier": "N23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30916,7 +58233,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30931,7 +58254,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30940,7 +58291,11 @@ "sample identifier": "8/22/2023 10:46:25 AM N24", "location identifier": "N24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -30959,7 +58314,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -30974,7 +58335,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -30983,7 +58372,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O1", "location identifier": "O1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31002,7 +58395,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31017,7 +58416,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31026,7 +58453,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O2", "location identifier": "O2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31045,7 +58476,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31060,7 +58497,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31069,7 +58534,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O3", "location identifier": "O3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31088,7 +58557,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31103,7 +58578,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31112,7 +58615,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O4", "location identifier": "O4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31131,7 +58638,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31146,7 +58659,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31155,7 +58696,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O5", "location identifier": "O5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31174,7 +58719,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31189,7 +58740,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31198,7 +58777,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O6", "location identifier": "O6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31217,7 +58800,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31232,7 +58821,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31241,7 +58858,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O7", "location identifier": "O7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31260,7 +58881,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31275,7 +58902,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31284,7 +58939,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O8", "location identifier": "O8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31303,7 +58962,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31318,7 +58983,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31327,7 +59020,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O9", "location identifier": "O9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31346,7 +59043,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31361,7 +59064,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31370,7 +59101,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O10", "location identifier": "O10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31389,7 +59124,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31404,7 +59145,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31413,7 +59182,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O11", "location identifier": "O11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31432,7 +59205,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31447,7 +59226,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31456,7 +59263,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O12", "location identifier": "O12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31475,7 +59286,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31490,7 +59307,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31499,7 +59344,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O13", "location identifier": "O13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31518,7 +59367,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31533,7 +59388,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31542,7 +59425,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O14", "location identifier": "O14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31561,7 +59448,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31576,7 +59469,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31585,7 +59506,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O15", "location identifier": "O15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31604,7 +59529,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31619,7 +59550,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31628,7 +59587,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O16", "location identifier": "O16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31647,7 +59610,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31662,7 +59631,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31671,7 +59668,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O17", "location identifier": "O17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31690,7 +59691,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31705,7 +59712,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31714,7 +59749,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O18", "location identifier": "O18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31733,7 +59772,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31748,7 +59793,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31757,7 +59830,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O19", "location identifier": "O19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31776,7 +59853,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31791,7 +59874,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31800,7 +59911,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O20", "location identifier": "O20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31819,7 +59934,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31834,7 +59955,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31843,7 +59992,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O21", "location identifier": "O21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31862,7 +60015,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31877,7 +60036,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31886,7 +60073,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O22", "location identifier": "O22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31905,7 +60096,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31920,7 +60117,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31929,7 +60154,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O23", "location identifier": "O23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31948,7 +60177,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -31963,7 +60198,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -31972,7 +60235,11 @@ "sample identifier": "8/22/2023 10:46:25 AM O24", "location identifier": "O24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -31991,7 +60258,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32006,7 +60279,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32015,7 +60316,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P1", "location identifier": "P1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32034,7 +60339,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32049,7 +60360,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32058,7 +60397,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P2", "location identifier": "P2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32077,7 +60420,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32092,7 +60441,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32101,7 +60478,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P3", "location identifier": "P3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32120,7 +60501,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32135,7 +60522,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32144,7 +60559,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P4", "location identifier": "P4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32163,7 +60582,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32178,7 +60603,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32187,7 +60640,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P5", "location identifier": "P5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32206,7 +60663,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32221,7 +60684,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32230,7 +60721,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P6", "location identifier": "P6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32249,7 +60744,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32264,7 +60765,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32273,7 +60802,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P7", "location identifier": "P7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32292,7 +60825,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32307,7 +60846,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32316,7 +60883,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P8", "location identifier": "P8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32335,7 +60906,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32350,7 +60927,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32359,7 +60964,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P9", "location identifier": "P9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32378,7 +60987,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32393,7 +61008,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32402,7 +61045,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P10", "location identifier": "P10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32421,7 +61068,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32436,7 +61089,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32445,7 +61126,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P11", "location identifier": "P11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32464,7 +61149,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32479,7 +61170,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32488,7 +61207,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P12", "location identifier": "P12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32507,7 +61230,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32522,7 +61251,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32531,7 +61288,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P13", "location identifier": "P13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32550,7 +61311,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32565,7 +61332,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32574,7 +61369,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P14", "location identifier": "P14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32593,7 +61392,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32608,7 +61413,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32617,7 +61450,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P15", "location identifier": "P15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32636,7 +61473,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32651,7 +61494,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32660,7 +61531,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P16", "location identifier": "P16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32679,7 +61554,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32694,7 +61575,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32703,7 +61612,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P17", "location identifier": "P17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32722,7 +61635,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32737,7 +61656,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32746,7 +61693,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P18", "location identifier": "P18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32765,7 +61716,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32780,7 +61737,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32789,7 +61774,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P19", "location identifier": "P19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32808,7 +61797,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32823,7 +61818,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32832,7 +61855,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P20", "location identifier": "P20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32851,7 +61878,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32866,7 +61899,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32875,7 +61936,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P21", "location identifier": "P21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32894,7 +61959,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32909,7 +61980,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32918,7 +62017,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P22", "location identifier": "P22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32937,7 +62040,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32952,7 +62061,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -32961,7 +62098,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P23", "location identifier": "P23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -32980,7 +62121,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } }, { @@ -32995,7 +62142,35 @@ "value": 14.67, "unit": "mm" }, - "detector gain setting": "1" + "detector gain setting": "1", + "custom information document": { + "Ambient temperature at start": { + "value": 24.46, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.55, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.66, + "unit": "degC" + }, + "Humidity at start": { + "value": 54.1, + "unit": "%" + }, + "Humidity at end": { + "value": 53.0, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 + } } ] }, @@ -33004,7 +62179,11 @@ "sample identifier": "8/22/2023 10:46:25 AM P24", "location identifier": "P24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 10:46:25 AM" + "well plate identifier": "8/22/2023 10:46:25 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -33023,7 +62202,13 @@ }, "analytical method identifier": "100175", "experimental data identifier": "2898", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 10:41:10 AM", + "Assay Finished": "8/22/2023 10:48:03 AM", + "Protocol Name": "DL Test Alpha", + "Assay Exported": "8/22/2023 10:48:03 AM" + } } } ], @@ -46093,7 +75278,7 @@ "file name": "PE_Envision_fluorescence_example04.csv", "UNC path": "tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example04.csv", "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.80", + "ASM converter version": "0.1.105", "software name": "EnVision Workstation", "software version": "1.14.3049.1193" }, diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_luminescence_example01.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_luminescence_example01.json index a4d27715ac..8b7423a5cb 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_luminescence_example01.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_luminescence_example01.json @@ -13,6 +13,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22,7 +50,12 @@ "sample identifier": "8/22/2023 11:01:43 AM A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0, + "Name of the plate type": "384 OptiPlate" + } }, "compartment temperature": { "value": 23.47, @@ -41,7 +74,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -55,6 +94,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -64,7 +131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -83,7 +154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -97,6 +174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -106,7 +211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -125,7 +234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -139,6 +254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -148,7 +291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -167,7 +314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -181,6 +334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -190,7 +371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -209,7 +394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -223,6 +414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -232,7 +451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -251,7 +474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -265,6 +494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -274,7 +531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -293,7 +554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -307,6 +574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -316,7 +611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -335,7 +634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -349,6 +654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -358,7 +691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -377,7 +714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -391,6 +734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -400,7 +771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -419,7 +794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -433,6 +814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -442,7 +851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -461,7 +874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -475,6 +894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -484,7 +931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -503,7 +954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -517,6 +974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -526,7 +1011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A13", "location identifier": "A13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -545,7 +1034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -559,6 +1054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -568,7 +1091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A14", "location identifier": "A14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -587,7 +1114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -601,6 +1134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -610,7 +1171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A15", "location identifier": "A15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -629,7 +1194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -643,6 +1214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -652,7 +1251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A16", "location identifier": "A16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -671,7 +1274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -685,6 +1294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -694,7 +1331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A17", "location identifier": "A17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -713,7 +1354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -727,6 +1374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -736,7 +1411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A18", "location identifier": "A18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -755,7 +1434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -769,6 +1454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -778,7 +1491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A19", "location identifier": "A19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -797,7 +1514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -811,6 +1534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -820,7 +1571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A20", "location identifier": "A20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -839,7 +1594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -853,6 +1614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -862,7 +1651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A21", "location identifier": "A21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -881,7 +1674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -895,6 +1694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -904,7 +1731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A22", "location identifier": "A22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -923,7 +1754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -937,6 +1774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -946,7 +1811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A23", "location identifier": "A23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -965,7 +1834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -979,6 +1854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -988,7 +1891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A24", "location identifier": "A24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1007,7 +1914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1021,6 +1934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1030,7 +1971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1049,7 +1994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1063,6 +2014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1072,7 +2051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1091,7 +2074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1105,6 +2094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1114,7 +2131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1133,7 +2154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1147,6 +2174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1156,7 +2211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1175,7 +2234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1189,6 +2254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1198,7 +2291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1217,7 +2314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1231,6 +2334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1240,7 +2371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1259,7 +2394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1273,6 +2414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1282,7 +2451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1301,7 +2474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1315,6 +2494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1324,7 +2531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1343,7 +2554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1357,6 +2574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1366,7 +2611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1385,7 +2634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1399,6 +2654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1408,7 +2691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1427,7 +2714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1441,6 +2734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1450,7 +2771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1469,7 +2794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1483,6 +2814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1492,7 +2851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1511,7 +2874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1525,6 +2894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1534,7 +2931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B13", "location identifier": "B13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1553,7 +2954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1567,6 +2974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1576,7 +3011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B14", "location identifier": "B14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1595,7 +3034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1609,6 +3054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1618,7 +3091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B15", "location identifier": "B15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1637,7 +3114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1651,6 +3134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1660,7 +3171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B16", "location identifier": "B16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1679,7 +3194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1693,6 +3214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1702,7 +3251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B17", "location identifier": "B17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1721,7 +3274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1735,6 +3294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1744,7 +3331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B18", "location identifier": "B18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1763,7 +3354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1777,6 +3374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1786,7 +3411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B19", "location identifier": "B19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1805,7 +3434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1819,6 +3454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1828,7 +3491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B20", "location identifier": "B20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1847,7 +3514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1861,6 +3534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1870,7 +3571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B21", "location identifier": "B21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1889,7 +3594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1903,6 +3614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1912,7 +3651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B22", "location identifier": "B22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1931,7 +3674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1945,6 +3694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1954,7 +3731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B23", "location identifier": "B23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1973,7 +3754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -1987,6 +3774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -1996,7 +3811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B24", "location identifier": "B24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2015,7 +3834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2029,6 +3854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2038,7 +3891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2057,7 +3914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2071,6 +3934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2080,7 +3971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2099,7 +3994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2113,6 +4014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2122,7 +4051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2141,7 +4074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2155,6 +4094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2164,7 +4131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2183,7 +4154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2197,6 +4174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2206,7 +4211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2225,7 +4234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2239,6 +4254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2248,7 +4291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2267,7 +4314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2281,6 +4334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2290,7 +4371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2309,7 +4394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2323,6 +4414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2332,7 +4451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2351,7 +4474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2365,6 +4494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2374,7 +4531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2393,7 +4554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2407,6 +4574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2416,7 +4611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2435,7 +4634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2449,6 +4654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2458,7 +4691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2477,7 +4714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2491,6 +4734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2500,7 +4771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2519,7 +4794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2533,6 +4814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2542,7 +4851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C13", "location identifier": "C13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2561,7 +4874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2575,6 +4894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2584,7 +4931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C14", "location identifier": "C14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2603,7 +4954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2617,6 +4974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2626,7 +5011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C15", "location identifier": "C15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2645,7 +5034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2659,6 +5054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2668,7 +5091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C16", "location identifier": "C16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2687,7 +5114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2701,6 +5134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2710,7 +5171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C17", "location identifier": "C17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2729,7 +5194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2743,6 +5214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2752,7 +5251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C18", "location identifier": "C18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2771,7 +5274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2785,6 +5294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2794,7 +5331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C19", "location identifier": "C19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2813,7 +5354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2827,6 +5374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2836,7 +5411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C20", "location identifier": "C20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2855,7 +5434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2869,6 +5454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2878,7 +5491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C21", "location identifier": "C21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2897,7 +5514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2911,6 +5534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2920,7 +5571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C22", "location identifier": "C22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2939,7 +5594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2953,6 +5614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -2962,7 +5651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C23", "location identifier": "C23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2981,7 +5674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -2995,6 +5694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3004,7 +5731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C24", "location identifier": "C24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3023,7 +5754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3037,6 +5774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3046,7 +5811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3065,7 +5834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3079,6 +5854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3088,7 +5891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3107,7 +5914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3121,6 +5934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3130,7 +5971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3149,7 +5994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3163,6 +6014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3172,7 +6051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3191,7 +6074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3205,6 +6094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3214,7 +6131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3233,7 +6154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3247,6 +6174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3256,7 +6211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3275,7 +6234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3289,6 +6254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3298,7 +6291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3317,7 +6314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3331,6 +6334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3340,7 +6371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3359,7 +6394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3373,6 +6414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3382,7 +6451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3401,7 +6474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3415,6 +6494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3424,7 +6531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3443,7 +6554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3457,6 +6574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3466,7 +6611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3485,7 +6634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3499,6 +6654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3508,7 +6691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3527,7 +6714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3541,6 +6734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3550,7 +6771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D13", "location identifier": "D13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3569,7 +6794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3583,6 +6814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3592,7 +6851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D14", "location identifier": "D14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3611,7 +6874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3625,6 +6894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3634,7 +6931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D15", "location identifier": "D15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3653,7 +6954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3667,6 +6974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3676,7 +7011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D16", "location identifier": "D16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3695,7 +7034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3709,6 +7054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3718,7 +7091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D17", "location identifier": "D17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3737,7 +7114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3751,6 +7134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3760,7 +7171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D18", "location identifier": "D18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3779,7 +7194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3793,6 +7214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3802,7 +7251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D19", "location identifier": "D19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3821,7 +7274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3835,6 +7294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3844,7 +7331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D20", "location identifier": "D20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3863,7 +7354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3877,6 +7374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3886,7 +7411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D21", "location identifier": "D21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3905,7 +7434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3919,6 +7454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3928,7 +7491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D22", "location identifier": "D22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3947,7 +7514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -3961,6 +7534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -3970,7 +7571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D23", "location identifier": "D23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3989,7 +7594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4003,6 +7614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4012,7 +7651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D24", "location identifier": "D24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4031,7 +7674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4045,6 +7694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4054,7 +7731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4073,7 +7754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4087,6 +7774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4096,7 +7811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4115,7 +7834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4129,6 +7854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4138,7 +7891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4157,7 +7914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4171,6 +7934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4180,7 +7971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4199,7 +7994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4213,6 +8014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4222,7 +8051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4241,7 +8074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4255,6 +8094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4264,7 +8131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4283,7 +8154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4297,6 +8174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4306,7 +8211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4325,7 +8234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4339,6 +8254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4348,7 +8291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4367,7 +8314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4381,6 +8334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4390,7 +8371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4409,7 +8394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4423,6 +8414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4432,7 +8451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4451,7 +8474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4465,6 +8494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4474,7 +8531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4493,7 +8554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4507,6 +8574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4516,7 +8611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4535,7 +8634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4549,6 +8654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4558,7 +8691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E13", "location identifier": "E13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4577,7 +8714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4591,6 +8734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4600,7 +8771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E14", "location identifier": "E14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4619,7 +8794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4633,6 +8814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4642,7 +8851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E15", "location identifier": "E15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4661,7 +8874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4675,6 +8894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4684,7 +8931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E16", "location identifier": "E16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4703,7 +8954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4717,6 +8974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4726,7 +9011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E17", "location identifier": "E17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4745,7 +9034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4759,6 +9054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4768,7 +9091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E18", "location identifier": "E18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4787,7 +9114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4801,6 +9134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4810,7 +9171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E19", "location identifier": "E19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4829,7 +9194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4843,6 +9214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4852,7 +9251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E20", "location identifier": "E20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4871,7 +9274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4885,6 +9294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4894,7 +9331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E21", "location identifier": "E21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4913,7 +9354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4927,6 +9374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4936,7 +9411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E22", "location identifier": "E22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4955,7 +9434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -4969,6 +9454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -4978,7 +9491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E23", "location identifier": "E23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4997,7 +9514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5011,6 +9534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5020,7 +9571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E24", "location identifier": "E24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5039,7 +9594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5053,6 +9614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5062,7 +9651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5081,7 +9674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5095,6 +9694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5104,7 +9731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5123,7 +9754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5137,6 +9774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5146,7 +9811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5165,7 +9834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5179,6 +9854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5188,7 +9891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5207,7 +9914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5221,6 +9934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5230,7 +9971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5249,7 +9994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5263,6 +10014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5272,7 +10051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5291,7 +10074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5305,6 +10094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5314,7 +10131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5333,7 +10154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5347,6 +10174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5356,7 +10211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5375,7 +10234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5389,6 +10254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5398,7 +10291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5417,7 +10314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5431,6 +10334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5440,7 +10371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5459,7 +10394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5473,6 +10414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5482,7 +10451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5501,7 +10474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5515,6 +10494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5524,7 +10531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5543,7 +10554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5557,6 +10574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5566,7 +10611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F13", "location identifier": "F13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5585,7 +10634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5599,6 +10654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5608,7 +10691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F14", "location identifier": "F14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5627,7 +10714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5641,6 +10734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5650,7 +10771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F15", "location identifier": "F15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5669,7 +10794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5683,6 +10814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5692,7 +10851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F16", "location identifier": "F16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5711,7 +10874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5725,6 +10894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5734,7 +10931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F17", "location identifier": "F17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5753,7 +10954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5767,6 +10974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5776,7 +11011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F18", "location identifier": "F18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5795,7 +11034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5809,6 +11054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5818,7 +11091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F19", "location identifier": "F19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5837,7 +11114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5851,6 +11134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5860,7 +11171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F20", "location identifier": "F20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5879,7 +11194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5893,6 +11214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5902,7 +11251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F21", "location identifier": "F21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5921,7 +11274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5935,6 +11294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5944,7 +11331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F22", "location identifier": "F22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5963,7 +11354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -5977,6 +11374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -5986,7 +11411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F23", "location identifier": "F23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6005,7 +11434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6019,6 +11454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6028,7 +11491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F24", "location identifier": "F24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6047,7 +11514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6061,6 +11534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6070,7 +11571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6089,7 +11594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6103,6 +11614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6112,7 +11651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6131,7 +11674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6145,6 +11694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6154,7 +11731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6173,7 +11754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6187,6 +11774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6196,7 +11811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6215,7 +11834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6229,6 +11854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6238,7 +11891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6257,7 +11914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6271,6 +11934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6280,7 +11971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6299,7 +11994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6313,6 +12014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6322,7 +12051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6341,7 +12074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6355,6 +12094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6364,7 +12131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6383,7 +12154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6397,6 +12174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6406,7 +12211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6425,7 +12234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6439,6 +12254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6448,7 +12291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6467,7 +12314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6481,6 +12334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6490,7 +12371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6509,7 +12394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6523,6 +12414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6532,7 +12451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6551,7 +12474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6565,6 +12494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6574,7 +12531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G13", "location identifier": "G13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6593,7 +12554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6607,6 +12574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6616,7 +12611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G14", "location identifier": "G14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6635,7 +12634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6649,6 +12654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6658,7 +12691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G15", "location identifier": "G15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6677,7 +12714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6691,6 +12734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6700,7 +12771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G16", "location identifier": "G16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6719,7 +12794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6733,6 +12814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6742,7 +12851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G17", "location identifier": "G17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6761,7 +12874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6775,6 +12894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6784,7 +12931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G18", "location identifier": "G18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6803,7 +12954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6817,6 +12974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6826,7 +13011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G19", "location identifier": "G19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6845,7 +13034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6859,6 +13054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6868,7 +13091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G20", "location identifier": "G20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6887,7 +13114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6901,6 +13134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6910,7 +13171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G21", "location identifier": "G21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6929,7 +13194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6943,6 +13214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6952,7 +13251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G22", "location identifier": "G22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6971,7 +13274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -6985,6 +13294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -6994,7 +13331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G23", "location identifier": "G23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7013,7 +13354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7027,6 +13374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7036,7 +13411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G24", "location identifier": "G24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7055,7 +13434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7069,6 +13454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7078,7 +13491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7097,7 +13514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7111,6 +13534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7120,7 +13571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7139,7 +13594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7153,6 +13614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7162,7 +13651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7181,7 +13674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7195,6 +13694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7204,7 +13731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7223,7 +13754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7237,6 +13774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7246,7 +13811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7265,7 +13834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7279,6 +13854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7288,7 +13891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7307,7 +13914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7321,6 +13934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7330,7 +13971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7349,7 +13994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7363,6 +14014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7372,7 +14051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7391,7 +14074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7405,6 +14094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7414,7 +14131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7433,7 +14154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7447,6 +14174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7456,7 +14211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7475,7 +14234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7489,6 +14254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7498,7 +14291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7517,7 +14314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7531,6 +14334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7540,7 +14371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7559,7 +14394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7573,6 +14414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7582,7 +14451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H13", "location identifier": "H13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7601,7 +14474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7615,6 +14494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7624,7 +14531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H14", "location identifier": "H14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7643,7 +14554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7657,6 +14574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7666,7 +14611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H15", "location identifier": "H15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7685,7 +14634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7699,6 +14654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7708,7 +14691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H16", "location identifier": "H16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7727,7 +14714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7741,6 +14734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7750,7 +14771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H17", "location identifier": "H17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7769,7 +14794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7783,6 +14814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7792,7 +14851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H18", "location identifier": "H18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7811,7 +14874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7825,6 +14894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7834,7 +14931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H19", "location identifier": "H19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7853,7 +14954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7867,6 +14974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7876,7 +15011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H20", "location identifier": "H20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7895,7 +15034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7909,6 +15054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7918,7 +15091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H21", "location identifier": "H21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7937,7 +15114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7951,6 +15134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -7960,7 +15171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H22", "location identifier": "H22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7979,7 +15194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -7993,6 +15214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8002,7 +15251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H23", "location identifier": "H23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8021,7 +15274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8035,6 +15294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8044,7 +15331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H24", "location identifier": "H24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8063,7 +15354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8077,6 +15374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8086,7 +15411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I1", "location identifier": "I1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8105,7 +15434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8119,6 +15454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8128,7 +15491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I2", "location identifier": "I2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8147,7 +15514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8161,6 +15534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8170,7 +15571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I3", "location identifier": "I3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8189,7 +15594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8203,6 +15614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8212,7 +15651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I4", "location identifier": "I4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8231,7 +15674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8245,6 +15694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8254,7 +15731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I5", "location identifier": "I5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8273,7 +15754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8287,6 +15774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8296,7 +15811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I6", "location identifier": "I6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8315,7 +15834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8329,6 +15854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8338,7 +15891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I7", "location identifier": "I7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8357,7 +15914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8371,6 +15934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8380,7 +15971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I8", "location identifier": "I8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8399,7 +15994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8413,6 +16014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8422,7 +16051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I9", "location identifier": "I9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8441,7 +16074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8455,6 +16094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8464,7 +16131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I10", "location identifier": "I10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8483,7 +16154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8497,6 +16174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8506,7 +16211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I11", "location identifier": "I11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8525,7 +16234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8539,6 +16254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8548,7 +16291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I12", "location identifier": "I12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8567,7 +16314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8581,6 +16334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8590,7 +16371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I13", "location identifier": "I13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8609,7 +16394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8623,6 +16414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8632,7 +16451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I14", "location identifier": "I14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8651,7 +16474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8665,6 +16494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8674,7 +16531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I15", "location identifier": "I15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8693,7 +16554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8707,6 +16574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8716,7 +16611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I16", "location identifier": "I16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8735,7 +16634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8749,6 +16654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8758,7 +16691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I17", "location identifier": "I17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8777,7 +16714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8791,6 +16734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8800,7 +16771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I18", "location identifier": "I18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8819,7 +16794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8833,6 +16814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8842,7 +16851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I19", "location identifier": "I19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8861,7 +16874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8875,6 +16894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8884,7 +16931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I20", "location identifier": "I20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8903,7 +16954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8917,6 +16974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8926,7 +17011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I21", "location identifier": "I21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8945,7 +17034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -8959,6 +17054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -8968,7 +17091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I22", "location identifier": "I22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8987,7 +17114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9001,6 +17134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9010,7 +17171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I23", "location identifier": "I23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9029,7 +17194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9043,6 +17214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9052,7 +17251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I24", "location identifier": "I24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9071,7 +17274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9085,6 +17294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9094,7 +17331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J1", "location identifier": "J1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9113,7 +17354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9127,6 +17374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9136,7 +17411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J2", "location identifier": "J2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9155,7 +17434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9169,6 +17454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9178,7 +17491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J3", "location identifier": "J3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9197,7 +17514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9211,6 +17534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9220,7 +17571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J4", "location identifier": "J4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9239,7 +17594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9253,6 +17614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9262,7 +17651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J5", "location identifier": "J5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9281,7 +17674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9295,6 +17694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9304,7 +17731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J6", "location identifier": "J6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9323,7 +17754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9337,6 +17774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9346,7 +17811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J7", "location identifier": "J7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9365,7 +17834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9379,6 +17854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9388,7 +17891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J8", "location identifier": "J8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9407,7 +17914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9421,6 +17934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9430,7 +17971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J9", "location identifier": "J9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9449,7 +17994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9463,6 +18014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9472,7 +18051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J10", "location identifier": "J10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9491,7 +18074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9505,6 +18094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9514,7 +18131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J11", "location identifier": "J11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9533,7 +18154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9547,6 +18174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9556,7 +18211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J12", "location identifier": "J12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9575,7 +18234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9589,6 +18254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9598,7 +18291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J13", "location identifier": "J13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9617,7 +18314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9631,6 +18334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9640,7 +18371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J14", "location identifier": "J14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9659,7 +18394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9673,6 +18414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9682,7 +18451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J15", "location identifier": "J15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9701,7 +18474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9715,6 +18494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9724,7 +18531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J16", "location identifier": "J16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9743,7 +18554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9757,6 +18574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9766,7 +18611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J17", "location identifier": "J17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9785,7 +18634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9799,6 +18654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9808,7 +18691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J18", "location identifier": "J18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9827,7 +18714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9841,6 +18734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9850,7 +18771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J19", "location identifier": "J19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9869,7 +18794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9883,6 +18814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9892,7 +18851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J20", "location identifier": "J20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9911,7 +18874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9925,6 +18894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9934,7 +18931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J21", "location identifier": "J21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9953,7 +18954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -9967,6 +18974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -9976,7 +19011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J22", "location identifier": "J22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9995,7 +19034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10009,6 +19054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10018,7 +19091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J23", "location identifier": "J23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10037,7 +19114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10051,6 +19134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10060,7 +19171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J24", "location identifier": "J24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10079,7 +19194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10093,6 +19214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10102,7 +19251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K1", "location identifier": "K1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10121,7 +19274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10135,6 +19294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10144,7 +19331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K2", "location identifier": "K2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10163,7 +19354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10177,6 +19374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10186,7 +19411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K3", "location identifier": "K3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10205,7 +19434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10219,6 +19454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10228,7 +19491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K4", "location identifier": "K4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10247,7 +19514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10261,6 +19534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10270,7 +19571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K5", "location identifier": "K5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10289,7 +19594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10303,6 +19614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10312,7 +19651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K6", "location identifier": "K6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10331,7 +19674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10345,6 +19694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10354,7 +19731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K7", "location identifier": "K7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10373,7 +19754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10387,6 +19774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10396,7 +19811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K8", "location identifier": "K8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10415,7 +19834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10429,6 +19854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10438,7 +19891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K9", "location identifier": "K9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10457,7 +19914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10471,6 +19934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10480,7 +19971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K10", "location identifier": "K10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10499,7 +19994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10513,6 +20014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10522,7 +20051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K11", "location identifier": "K11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10541,7 +20074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10555,6 +20094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10564,7 +20131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K12", "location identifier": "K12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10583,7 +20154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10597,6 +20174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10606,7 +20211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K13", "location identifier": "K13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10625,7 +20234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10639,6 +20254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10648,7 +20291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K14", "location identifier": "K14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10667,7 +20314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10681,6 +20334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10690,7 +20371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K15", "location identifier": "K15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10709,7 +20394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10723,6 +20414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10732,7 +20451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K16", "location identifier": "K16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10751,7 +20474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10765,6 +20494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10774,7 +20531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K17", "location identifier": "K17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10793,7 +20554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10807,6 +20574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10816,7 +20611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K18", "location identifier": "K18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10835,7 +20634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10849,6 +20654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10858,7 +20691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K19", "location identifier": "K19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10877,7 +20714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10891,6 +20734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10900,7 +20771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K20", "location identifier": "K20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10919,7 +20794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10933,6 +20814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10942,7 +20851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K21", "location identifier": "K21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10961,7 +20874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -10975,6 +20894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -10984,7 +20931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K22", "location identifier": "K22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11003,7 +20954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11017,6 +20974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11026,7 +21011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K23", "location identifier": "K23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11045,7 +21034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11059,6 +21054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11068,7 +21091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K24", "location identifier": "K24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11087,7 +21114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11101,6 +21134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11110,7 +21171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L1", "location identifier": "L1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11129,7 +21194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11143,6 +21214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11152,7 +21251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L2", "location identifier": "L2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11171,7 +21274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11185,6 +21294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11194,7 +21331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L3", "location identifier": "L3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11213,7 +21354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11227,6 +21374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11236,7 +21411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L4", "location identifier": "L4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11255,7 +21434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11269,6 +21454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11278,7 +21491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L5", "location identifier": "L5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11297,7 +21514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11311,6 +21534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11320,7 +21571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L6", "location identifier": "L6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11339,7 +21594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11353,6 +21614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11362,7 +21651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L7", "location identifier": "L7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11381,7 +21674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11395,6 +21694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11404,7 +21731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L8", "location identifier": "L8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11423,7 +21754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11437,6 +21774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11446,7 +21811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L9", "location identifier": "L9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11465,7 +21834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11479,6 +21854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11488,7 +21891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L10", "location identifier": "L10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11507,7 +21914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11521,6 +21934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11530,7 +21971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L11", "location identifier": "L11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11549,7 +21994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11563,6 +22014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11572,7 +22051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L12", "location identifier": "L12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11591,7 +22074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11605,6 +22094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11614,7 +22131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L13", "location identifier": "L13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11633,7 +22154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11647,6 +22174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11656,7 +22211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L14", "location identifier": "L14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11675,7 +22234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11689,6 +22254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11698,7 +22291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L15", "location identifier": "L15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11717,7 +22314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11731,6 +22334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11740,7 +22371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L16", "location identifier": "L16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11759,7 +22394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11773,6 +22414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11782,7 +22451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L17", "location identifier": "L17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11801,7 +22474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11815,6 +22494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11824,7 +22531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L18", "location identifier": "L18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11843,7 +22554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11857,6 +22574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11866,7 +22611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L19", "location identifier": "L19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11885,7 +22634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11899,6 +22654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11908,7 +22691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L20", "location identifier": "L20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11927,7 +22714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11941,6 +22734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11950,7 +22771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L21", "location identifier": "L21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11969,7 +22794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -11983,6 +22814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -11992,7 +22851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L22", "location identifier": "L22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12011,7 +22874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12025,6 +22894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12034,7 +22931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L23", "location identifier": "L23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12053,7 +22954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12067,6 +22974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12076,7 +23011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L24", "location identifier": "L24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12095,7 +23034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12109,6 +23054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12118,7 +23091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M1", "location identifier": "M1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12137,7 +23114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12151,6 +23134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12160,7 +23171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M2", "location identifier": "M2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12179,7 +23194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12193,6 +23214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12202,7 +23251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M3", "location identifier": "M3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12221,7 +23274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12235,6 +23294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12244,7 +23331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M4", "location identifier": "M4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12263,7 +23354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12277,6 +23374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12286,7 +23411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M5", "location identifier": "M5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12305,7 +23434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12319,6 +23454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12328,7 +23491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M6", "location identifier": "M6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12347,7 +23514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12361,6 +23534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12370,7 +23571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M7", "location identifier": "M7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12389,7 +23594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12403,6 +23614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12412,7 +23651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M8", "location identifier": "M8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12431,7 +23674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12445,6 +23694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12454,7 +23731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M9", "location identifier": "M9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12473,7 +23754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12487,6 +23774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12496,7 +23811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M10", "location identifier": "M10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12515,7 +23834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12529,6 +23854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12538,7 +23891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M11", "location identifier": "M11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12557,7 +23914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12571,6 +23934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12580,7 +23971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M12", "location identifier": "M12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12599,7 +23994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12613,6 +24014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12622,7 +24051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M13", "location identifier": "M13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12641,7 +24074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12655,6 +24094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12664,7 +24131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M14", "location identifier": "M14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12683,7 +24154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12697,6 +24174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12706,7 +24211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M15", "location identifier": "M15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12725,7 +24234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12739,6 +24254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12748,7 +24291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M16", "location identifier": "M16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12767,7 +24314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12781,6 +24334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12790,7 +24371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M17", "location identifier": "M17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12809,7 +24394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12823,6 +24414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12832,7 +24451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M18", "location identifier": "M18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12851,7 +24474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12865,6 +24494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12874,7 +24531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M19", "location identifier": "M19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12893,7 +24554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12907,6 +24574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12916,7 +24611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M20", "location identifier": "M20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12935,7 +24634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12949,6 +24654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -12958,7 +24691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M21", "location identifier": "M21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12977,7 +24714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -12991,6 +24734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13000,7 +24771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M22", "location identifier": "M22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13019,7 +24794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13033,6 +24814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13042,7 +24851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M23", "location identifier": "M23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13061,7 +24874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13075,6 +24894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13084,7 +24931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M24", "location identifier": "M24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13103,7 +24954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13117,6 +24974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13126,7 +25011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N1", "location identifier": "N1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13145,7 +25034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13159,6 +25054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13168,7 +25091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N2", "location identifier": "N2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13187,7 +25114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13201,6 +25134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13210,7 +25171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N3", "location identifier": "N3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13229,7 +25194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13243,6 +25214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13252,7 +25251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N4", "location identifier": "N4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13271,7 +25274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13285,6 +25294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13294,7 +25331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N5", "location identifier": "N5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13313,7 +25354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13327,6 +25374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13336,7 +25411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N6", "location identifier": "N6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13355,7 +25434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13369,6 +25454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13378,7 +25491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N7", "location identifier": "N7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13397,7 +25514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13411,6 +25534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13420,7 +25571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N8", "location identifier": "N8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13439,7 +25594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13453,6 +25614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13462,7 +25651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N9", "location identifier": "N9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13481,7 +25674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13495,6 +25694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13504,7 +25731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N10", "location identifier": "N10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13523,7 +25754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13537,6 +25774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13546,7 +25811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N11", "location identifier": "N11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13565,7 +25834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13579,6 +25854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13588,7 +25891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N12", "location identifier": "N12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13607,7 +25914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13621,6 +25934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13630,7 +25971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N13", "location identifier": "N13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13649,7 +25994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13663,6 +26014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13672,7 +26051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N14", "location identifier": "N14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13691,7 +26074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13705,6 +26094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13714,7 +26131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N15", "location identifier": "N15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13733,7 +26154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13747,6 +26174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13756,7 +26211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N16", "location identifier": "N16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13775,7 +26234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13789,6 +26254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13798,7 +26291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N17", "location identifier": "N17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13817,7 +26314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13831,6 +26334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13840,7 +26371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N18", "location identifier": "N18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13859,7 +26394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13873,6 +26414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13882,7 +26451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N19", "location identifier": "N19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13901,7 +26474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13915,6 +26494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13924,7 +26531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N20", "location identifier": "N20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13943,7 +26554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13957,6 +26574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -13966,7 +26611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N21", "location identifier": "N21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13985,7 +26634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -13999,6 +26654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14008,7 +26691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N22", "location identifier": "N22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14027,7 +26714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14041,6 +26734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14050,7 +26771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N23", "location identifier": "N23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14069,7 +26794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14083,6 +26814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14092,7 +26851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N24", "location identifier": "N24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14111,7 +26874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14125,6 +26894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14134,7 +26931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O1", "location identifier": "O1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14153,7 +26954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14167,6 +26974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14176,7 +27011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O2", "location identifier": "O2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14195,7 +27034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14209,6 +27054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14218,7 +27091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O3", "location identifier": "O3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14237,7 +27114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14251,6 +27134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14260,7 +27171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O4", "location identifier": "O4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14279,7 +27194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14293,6 +27214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14302,7 +27251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O5", "location identifier": "O5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14321,7 +27274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14335,6 +27294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14344,7 +27331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O6", "location identifier": "O6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14363,7 +27354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14377,6 +27374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14386,7 +27411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O7", "location identifier": "O7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14405,7 +27434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14419,6 +27454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14428,7 +27491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O8", "location identifier": "O8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14447,7 +27514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14461,6 +27534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14470,7 +27571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O9", "location identifier": "O9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14489,7 +27594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14503,6 +27614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14512,7 +27651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O10", "location identifier": "O10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14531,7 +27674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14545,6 +27694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14554,7 +27731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O11", "location identifier": "O11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14573,7 +27754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14587,6 +27774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14596,7 +27811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O12", "location identifier": "O12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14615,7 +27834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14629,6 +27854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14638,7 +27891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O13", "location identifier": "O13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14657,7 +27914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14671,6 +27934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14680,7 +27971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O14", "location identifier": "O14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14699,7 +27994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14713,6 +28014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14722,7 +28051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O15", "location identifier": "O15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14741,7 +28074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14755,6 +28094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14764,7 +28131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O16", "location identifier": "O16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14783,7 +28154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14797,6 +28174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14806,7 +28211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O17", "location identifier": "O17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14825,7 +28234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14839,6 +28254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14848,7 +28291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O18", "location identifier": "O18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14867,7 +28314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14881,6 +28334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14890,7 +28371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O19", "location identifier": "O19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14909,7 +28394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14923,6 +28414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14932,7 +28451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O20", "location identifier": "O20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14951,7 +28474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -14965,6 +28494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -14974,7 +28531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O21", "location identifier": "O21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14993,7 +28554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15007,6 +28574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15016,7 +28611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O22", "location identifier": "O22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15035,7 +28634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15049,6 +28654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15058,7 +28691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O23", "location identifier": "O23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15077,7 +28714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15091,6 +28734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15100,7 +28771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O24", "location identifier": "O24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15119,7 +28794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15133,6 +28814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15142,7 +28851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P1", "location identifier": "P1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15161,7 +28874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15175,6 +28894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15184,7 +28931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P2", "location identifier": "P2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15203,7 +28954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15217,6 +28974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15226,7 +29011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P3", "location identifier": "P3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15245,7 +29034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15259,6 +29054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15268,7 +29091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P4", "location identifier": "P4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15287,7 +29114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15301,6 +29134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15310,7 +29171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P5", "location identifier": "P5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15329,7 +29194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15343,6 +29214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15352,7 +29251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P6", "location identifier": "P6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15371,7 +29274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15385,6 +29294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15394,7 +29331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P7", "location identifier": "P7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15413,7 +29354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15427,6 +29374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15436,7 +29411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P8", "location identifier": "P8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15455,7 +29434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15469,6 +29454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15478,7 +29491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P9", "location identifier": "P9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15497,7 +29514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15511,6 +29534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15520,7 +29571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P10", "location identifier": "P10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15539,7 +29594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15553,6 +29614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15562,7 +29651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P11", "location identifier": "P11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15581,7 +29674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15595,6 +29694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15604,7 +29731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P12", "location identifier": "P12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15623,7 +29754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15637,6 +29774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15646,7 +29811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P13", "location identifier": "P13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15665,7 +29834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15679,6 +29854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15688,7 +29891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P14", "location identifier": "P14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15707,7 +29914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15721,6 +29934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15730,7 +29971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P15", "location identifier": "P15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15749,7 +29994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15763,6 +30014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15772,7 +30051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P16", "location identifier": "P16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15791,7 +30074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15805,6 +30094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15814,7 +30131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P17", "location identifier": "P17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15833,7 +30154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15847,6 +30174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15856,7 +30211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P18", "location identifier": "P18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15875,7 +30234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15889,6 +30254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15898,7 +30291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P19", "location identifier": "P19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15917,7 +30314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15931,6 +30334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15940,7 +30371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P20", "location identifier": "P20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15959,7 +30394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -15973,6 +30414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -15982,7 +30451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P21", "location identifier": "P21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16001,7 +30474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16015,6 +30494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16024,7 +30531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P22", "location identifier": "P22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16043,7 +30554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16057,6 +30574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16066,7 +30611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P23", "location identifier": "P23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16085,7 +30634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16099,6 +30654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16108,7 +30691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P24", "location identifier": "P24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16127,7 +30714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16141,6 +30734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16150,7 +30771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16169,7 +30794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16183,6 +30814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16192,7 +30851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16211,7 +30874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16225,6 +30894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16234,7 +30931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16253,7 +30954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16267,6 +30974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16276,7 +31011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16295,7 +31034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16309,6 +31054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16318,7 +31091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16337,7 +31114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16351,6 +31134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16360,7 +31171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16379,7 +31194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16393,6 +31214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16402,7 +31251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16421,7 +31274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16435,6 +31294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16444,7 +31331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16463,7 +31354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16477,6 +31374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16486,7 +31411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16505,7 +31434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16519,6 +31454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16528,7 +31491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16547,7 +31514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16561,6 +31534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16570,7 +31571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16589,7 +31594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16603,6 +31614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16612,7 +31651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16631,7 +31674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16645,6 +31694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16654,7 +31731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A13", "location identifier": "A13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16673,7 +31754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16687,6 +31774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16696,7 +31811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A14", "location identifier": "A14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16715,7 +31834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16729,6 +31854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16738,7 +31891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A15", "location identifier": "A15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16757,7 +31914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16771,6 +31934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16780,7 +31971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A16", "location identifier": "A16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16799,7 +31994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16813,6 +32014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16822,7 +32051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A17", "location identifier": "A17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16841,7 +32074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16855,6 +32094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16864,7 +32131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A18", "location identifier": "A18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16883,7 +32154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16897,6 +32174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16906,7 +32211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A19", "location identifier": "A19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16925,7 +32234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16939,6 +32254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16948,7 +32291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A20", "location identifier": "A20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16967,7 +32314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -16981,6 +32334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -16990,7 +32371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A21", "location identifier": "A21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17009,7 +32394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17023,6 +32414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17032,7 +32451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A22", "location identifier": "A22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17051,7 +32474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17065,6 +32494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17074,7 +32531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A23", "location identifier": "A23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17093,7 +32554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17107,6 +32574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17116,7 +32611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM A24", "location identifier": "A24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17135,7 +32634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17149,6 +32654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17158,7 +32691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17177,7 +32714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17191,6 +32734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17200,7 +32771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17219,7 +32794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17233,6 +32814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17242,7 +32851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17261,7 +32874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17275,6 +32894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17284,7 +32931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17303,7 +32954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17317,6 +32974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17326,7 +33011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17345,7 +33034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17359,6 +33054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17368,7 +33091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17387,7 +33114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17401,6 +33134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17410,7 +33171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17429,7 +33194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17443,6 +33214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17452,7 +33251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17471,7 +33274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17485,6 +33294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17494,7 +33331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17513,7 +33354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17527,6 +33374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17536,7 +33411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17555,7 +33434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17569,6 +33454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17578,7 +33491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17597,7 +33514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17611,6 +33534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17620,7 +33571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17639,7 +33594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17653,6 +33614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17662,7 +33651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B13", "location identifier": "B13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17681,7 +33674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17695,6 +33694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17704,7 +33731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B14", "location identifier": "B14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17723,7 +33754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17737,6 +33774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17746,7 +33811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B15", "location identifier": "B15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17765,7 +33834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17779,6 +33854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17788,7 +33891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B16", "location identifier": "B16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17807,7 +33914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17821,6 +33934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17830,7 +33971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B17", "location identifier": "B17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17849,7 +33994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17863,6 +34014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17872,7 +34051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B18", "location identifier": "B18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17891,7 +34074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17905,6 +34094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17914,7 +34131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B19", "location identifier": "B19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17933,7 +34154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17947,6 +34174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17956,7 +34211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B20", "location identifier": "B20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17975,7 +34234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -17989,6 +34254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -17998,7 +34291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B21", "location identifier": "B21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18017,7 +34314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18031,6 +34334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18040,7 +34371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B22", "location identifier": "B22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18059,7 +34394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18073,6 +34414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18082,7 +34451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B23", "location identifier": "B23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18101,7 +34474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18115,6 +34494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18124,7 +34531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM B24", "location identifier": "B24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18143,7 +34554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18157,6 +34574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18166,7 +34611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18185,7 +34634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18199,6 +34654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18208,7 +34691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18227,7 +34714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18241,6 +34734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18250,7 +34771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18269,7 +34794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18283,6 +34814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18292,7 +34851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18311,7 +34874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18325,6 +34894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18334,7 +34931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18353,7 +34954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18367,6 +34974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18376,7 +35011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18395,7 +35034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18409,6 +35054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18418,7 +35091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18437,7 +35114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18451,6 +35134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18460,7 +35171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18479,7 +35194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18493,6 +35214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18502,7 +35251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18521,7 +35274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18535,6 +35294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18544,7 +35331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18563,7 +35354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18577,6 +35374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18586,7 +35411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18605,7 +35434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18619,6 +35454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18628,7 +35491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18647,7 +35514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18661,6 +35534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18670,7 +35571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C13", "location identifier": "C13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18689,7 +35594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18703,6 +35614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18712,7 +35651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C14", "location identifier": "C14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18731,7 +35674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18745,6 +35694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18754,7 +35731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C15", "location identifier": "C15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18773,7 +35754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18787,6 +35774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18796,7 +35811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C16", "location identifier": "C16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18815,7 +35834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18829,6 +35854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18838,7 +35891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C17", "location identifier": "C17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18857,7 +35914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18871,6 +35934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18880,7 +35971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C18", "location identifier": "C18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18899,7 +35994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18913,6 +36014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18922,7 +36051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C19", "location identifier": "C19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18941,7 +36074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18955,6 +36094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -18964,7 +36131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C20", "location identifier": "C20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18983,7 +36154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -18997,6 +36174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19006,7 +36211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C21", "location identifier": "C21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19025,7 +36234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19039,6 +36254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19048,7 +36291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C22", "location identifier": "C22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19067,7 +36314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19081,6 +36334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19090,7 +36371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C23", "location identifier": "C23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19109,7 +36394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19123,6 +36414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19132,7 +36451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM C24", "location identifier": "C24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19151,7 +36474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19165,6 +36494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19174,7 +36531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19193,7 +36554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19207,6 +36574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19216,7 +36611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19235,7 +36634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19249,6 +36654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19258,7 +36691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19277,7 +36714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19291,6 +36734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19300,7 +36771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19319,7 +36794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19333,6 +36814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19342,7 +36851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19361,7 +36874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19375,6 +36894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19384,7 +36931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19403,7 +36954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19417,6 +36974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19426,7 +37011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19445,7 +37034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19459,6 +37054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19468,7 +37091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19487,7 +37114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19501,6 +37134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19510,7 +37171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19529,7 +37194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19543,6 +37214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19552,7 +37251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19571,7 +37274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19585,6 +37294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19594,7 +37331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19613,7 +37354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19627,6 +37374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19636,7 +37411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19655,7 +37434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19669,6 +37454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19678,7 +37491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D13", "location identifier": "D13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19697,7 +37514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19711,6 +37534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19720,7 +37571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D14", "location identifier": "D14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19739,7 +37594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19753,6 +37614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19762,7 +37651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D15", "location identifier": "D15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19781,7 +37674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19795,6 +37694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19804,7 +37731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D16", "location identifier": "D16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19823,7 +37754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19837,6 +37774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19846,7 +37811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D17", "location identifier": "D17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19865,7 +37834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19879,6 +37854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19888,7 +37891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D18", "location identifier": "D18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19907,7 +37914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19921,6 +37934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19930,7 +37971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D19", "location identifier": "D19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19949,7 +37994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -19963,6 +38014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -19972,7 +38051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D20", "location identifier": "D20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19991,7 +38074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20005,6 +38094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20014,7 +38131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D21", "location identifier": "D21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20033,7 +38154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20047,6 +38174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20056,7 +38211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D22", "location identifier": "D22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20075,7 +38234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20089,6 +38254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20098,7 +38291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D23", "location identifier": "D23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20117,7 +38314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20131,6 +38334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20140,7 +38371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM D24", "location identifier": "D24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20159,7 +38394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20173,6 +38414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20182,7 +38451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20201,7 +38474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20215,6 +38494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20224,7 +38531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20243,7 +38554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20257,6 +38574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20266,7 +38611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20285,7 +38634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20299,6 +38654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20308,7 +38691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20327,7 +38714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20341,6 +38734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20350,7 +38771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20369,7 +38794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20383,6 +38814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20392,7 +38851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20411,7 +38874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20425,6 +38894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20434,7 +38931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20453,7 +38954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20467,6 +38974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20476,7 +39011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20495,7 +39034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20509,6 +39054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20518,7 +39091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20537,7 +39114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20551,6 +39134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20560,7 +39171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20579,7 +39194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20593,6 +39214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20602,7 +39251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20621,7 +39274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20635,6 +39294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20644,7 +39331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20663,7 +39354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20677,6 +39374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20686,7 +39411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E13", "location identifier": "E13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20705,7 +39434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20719,6 +39454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20728,7 +39491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E14", "location identifier": "E14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20747,7 +39514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20761,6 +39534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20770,7 +39571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E15", "location identifier": "E15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20789,7 +39594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20803,6 +39614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20812,7 +39651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E16", "location identifier": "E16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20831,7 +39674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20845,6 +39694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20854,7 +39731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E17", "location identifier": "E17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20873,7 +39754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20887,6 +39774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20896,7 +39811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E18", "location identifier": "E18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20915,7 +39834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20929,6 +39854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20938,7 +39891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E19", "location identifier": "E19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20957,7 +39914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -20971,6 +39934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -20980,7 +39971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E20", "location identifier": "E20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20999,7 +39994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21013,6 +40014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21022,7 +40051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E21", "location identifier": "E21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21041,7 +40074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21055,6 +40094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21064,7 +40131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E22", "location identifier": "E22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21083,7 +40154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21097,6 +40174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21106,7 +40211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E23", "location identifier": "E23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21125,7 +40234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21139,6 +40254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21148,7 +40291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM E24", "location identifier": "E24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21167,7 +40314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21181,6 +40334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21190,7 +40371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21209,7 +40394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21223,6 +40414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21232,7 +40451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21251,7 +40474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21265,6 +40494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21274,7 +40531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21293,7 +40554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21307,6 +40574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21316,7 +40611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21335,7 +40634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21349,6 +40654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21358,7 +40691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21377,7 +40714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21391,6 +40734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21400,7 +40771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21419,7 +40794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21433,6 +40814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21442,7 +40851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21461,7 +40874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21475,6 +40894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21484,7 +40931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21503,7 +40954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21517,6 +40974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21526,7 +41011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21545,7 +41034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21559,6 +41054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21568,7 +41091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21587,7 +41114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21601,6 +41134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21610,7 +41171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21629,7 +41194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21643,6 +41214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21652,7 +41251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21671,7 +41274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21685,6 +41294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21694,7 +41331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F13", "location identifier": "F13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21713,7 +41354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21727,6 +41374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21736,7 +41411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F14", "location identifier": "F14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21755,7 +41434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21769,6 +41454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21778,7 +41491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F15", "location identifier": "F15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21797,7 +41514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21811,6 +41534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21820,7 +41571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F16", "location identifier": "F16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21839,7 +41594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21853,6 +41614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21862,7 +41651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F17", "location identifier": "F17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21881,7 +41674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21895,6 +41694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21904,7 +41731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F18", "location identifier": "F18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21923,7 +41754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21937,6 +41774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21946,7 +41811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F19", "location identifier": "F19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21965,7 +41834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -21979,6 +41854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -21988,7 +41891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F20", "location identifier": "F20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22007,7 +41914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22021,6 +41934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22030,7 +41971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F21", "location identifier": "F21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22049,7 +41994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22063,6 +42014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22072,7 +42051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F22", "location identifier": "F22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22091,7 +42074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22105,6 +42094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22114,7 +42131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F23", "location identifier": "F23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22133,7 +42154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22147,6 +42174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22156,7 +42211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM F24", "location identifier": "F24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22175,7 +42234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22189,6 +42254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22198,7 +42291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22217,7 +42314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22231,6 +42334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22240,7 +42371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22259,7 +42394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22273,6 +42414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22282,7 +42451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22301,7 +42474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22315,6 +42494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22324,7 +42531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22343,7 +42554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22357,6 +42574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22366,7 +42611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22385,7 +42634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22399,6 +42654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22408,7 +42691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22427,7 +42714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22441,6 +42734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22450,7 +42771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22469,7 +42794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22483,6 +42814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22492,7 +42851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22511,7 +42874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22525,6 +42894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22534,7 +42931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22553,7 +42954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22567,6 +42974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22576,7 +43011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22595,7 +43034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22609,6 +43054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22618,7 +43091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22637,7 +43114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22651,6 +43134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22660,7 +43171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22679,7 +43194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22693,6 +43214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22702,7 +43251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G13", "location identifier": "G13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22721,7 +43274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22735,6 +43294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22744,7 +43331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G14", "location identifier": "G14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22763,7 +43354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22777,6 +43374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22786,7 +43411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G15", "location identifier": "G15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22805,7 +43434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22819,6 +43454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22828,7 +43491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G16", "location identifier": "G16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22847,7 +43514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22861,6 +43534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22870,7 +43571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G17", "location identifier": "G17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22889,7 +43594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22903,6 +43614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22912,7 +43651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G18", "location identifier": "G18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22931,7 +43674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22945,6 +43694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22954,7 +43731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G19", "location identifier": "G19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22973,7 +43754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -22987,6 +43774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -22996,7 +43811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G20", "location identifier": "G20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23015,7 +43834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23029,6 +43854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23038,7 +43891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G21", "location identifier": "G21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23057,7 +43914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23071,6 +43934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23080,7 +43971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G22", "location identifier": "G22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23099,7 +43994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23113,6 +44014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23122,7 +44051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G23", "location identifier": "G23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23141,7 +44074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23155,6 +44094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23164,7 +44131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM G24", "location identifier": "G24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23183,7 +44154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23197,6 +44174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23206,7 +44211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23225,7 +44234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23239,6 +44254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23248,7 +44291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23267,7 +44314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23281,6 +44334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23290,7 +44371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23309,7 +44394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23323,6 +44414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23332,7 +44451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23351,7 +44474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23365,6 +44494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23374,7 +44531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23393,7 +44554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23407,6 +44574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23416,7 +44611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23435,7 +44634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23449,6 +44654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23458,7 +44691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23477,7 +44714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23491,6 +44734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23500,7 +44771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23519,7 +44794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23533,6 +44814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23542,7 +44851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23561,7 +44874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23575,6 +44894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23584,7 +44931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23603,7 +44954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23617,6 +44974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23626,7 +45011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23645,7 +45034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23659,6 +45054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23668,7 +45091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23687,7 +45114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23701,6 +45134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23710,7 +45171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H13", "location identifier": "H13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23729,7 +45194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23743,6 +45214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23752,7 +45251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H14", "location identifier": "H14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23771,7 +45274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23785,6 +45294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23794,7 +45331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H15", "location identifier": "H15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23813,7 +45354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23827,6 +45374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23836,7 +45411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H16", "location identifier": "H16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23855,7 +45434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23869,6 +45454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23878,7 +45491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H17", "location identifier": "H17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23897,7 +45514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23911,6 +45534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23920,7 +45571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H18", "location identifier": "H18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23939,7 +45594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23953,6 +45614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -23962,7 +45651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H19", "location identifier": "H19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23981,7 +45674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -23995,6 +45694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24004,7 +45731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H20", "location identifier": "H20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24023,7 +45754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24037,6 +45774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24046,7 +45811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H21", "location identifier": "H21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24065,7 +45834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24079,6 +45854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24088,7 +45891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H22", "location identifier": "H22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24107,7 +45914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24121,6 +45934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24130,7 +45971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H23", "location identifier": "H23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24149,7 +45994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24163,6 +46014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24172,7 +46051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM H24", "location identifier": "H24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24191,7 +46074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24205,6 +46094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24214,7 +46131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I1", "location identifier": "I1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24233,7 +46154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24247,6 +46174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24256,7 +46211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I2", "location identifier": "I2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24275,7 +46234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24289,6 +46254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24298,7 +46291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I3", "location identifier": "I3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24317,7 +46314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24331,6 +46334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24340,7 +46371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I4", "location identifier": "I4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24359,7 +46394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24373,6 +46414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24382,7 +46451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I5", "location identifier": "I5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24401,7 +46474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24415,6 +46494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24424,7 +46531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I6", "location identifier": "I6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24443,7 +46554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24457,6 +46574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24466,7 +46611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I7", "location identifier": "I7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24485,7 +46634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24499,6 +46654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24508,7 +46691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I8", "location identifier": "I8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24527,7 +46714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24541,6 +46734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24550,7 +46771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I9", "location identifier": "I9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24569,7 +46794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24583,6 +46814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24592,7 +46851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I10", "location identifier": "I10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24611,7 +46874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24625,6 +46894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24634,7 +46931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I11", "location identifier": "I11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24653,7 +46954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24667,6 +46974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24676,7 +47011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I12", "location identifier": "I12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24695,7 +47034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24709,6 +47054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24718,7 +47091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I13", "location identifier": "I13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24737,7 +47114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24751,6 +47134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24760,7 +47171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I14", "location identifier": "I14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24779,7 +47194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24793,6 +47214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24802,7 +47251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I15", "location identifier": "I15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24821,7 +47274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24835,6 +47294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24844,7 +47331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I16", "location identifier": "I16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24863,7 +47354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24877,6 +47374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24886,7 +47411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I17", "location identifier": "I17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24905,7 +47434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24919,6 +47454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24928,7 +47491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I18", "location identifier": "I18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24947,7 +47514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -24961,6 +47534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -24970,7 +47571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I19", "location identifier": "I19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24989,7 +47594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25003,6 +47614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25012,7 +47651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I20", "location identifier": "I20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25031,7 +47674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25045,6 +47694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25054,7 +47731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I21", "location identifier": "I21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25073,7 +47754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25087,6 +47774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25096,7 +47811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I22", "location identifier": "I22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25115,7 +47834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25129,6 +47854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25138,7 +47891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I23", "location identifier": "I23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25157,7 +47914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25171,6 +47934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25180,7 +47971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM I24", "location identifier": "I24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25199,7 +47994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25213,6 +48014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25222,7 +48051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J1", "location identifier": "J1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25241,7 +48074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25255,6 +48094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25264,7 +48131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J2", "location identifier": "J2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25283,7 +48154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25297,6 +48174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25306,7 +48211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J3", "location identifier": "J3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25325,7 +48234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25339,6 +48254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25348,7 +48291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J4", "location identifier": "J4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25367,7 +48314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25381,6 +48334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25390,7 +48371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J5", "location identifier": "J5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25409,7 +48394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25423,6 +48414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25432,7 +48451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J6", "location identifier": "J6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25451,7 +48474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25465,6 +48494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25474,7 +48531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J7", "location identifier": "J7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25493,7 +48554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25507,6 +48574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25516,7 +48611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J8", "location identifier": "J8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25535,7 +48634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25549,6 +48654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25558,7 +48691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J9", "location identifier": "J9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25577,7 +48714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25591,6 +48734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25600,7 +48771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J10", "location identifier": "J10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25619,7 +48794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25633,6 +48814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25642,7 +48851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J11", "location identifier": "J11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25661,7 +48874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25675,6 +48894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25684,7 +48931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J12", "location identifier": "J12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25703,7 +48954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25717,6 +48974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25726,7 +49011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J13", "location identifier": "J13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25745,7 +49034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25759,6 +49054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25768,7 +49091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J14", "location identifier": "J14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25787,7 +49114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25801,6 +49134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25810,7 +49171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J15", "location identifier": "J15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25829,7 +49194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25843,6 +49214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25852,7 +49251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J16", "location identifier": "J16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25871,7 +49274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25885,6 +49294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25894,7 +49331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J17", "location identifier": "J17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25913,7 +49354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25927,6 +49374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25936,7 +49411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J18", "location identifier": "J18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25955,7 +49434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -25969,6 +49454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -25978,7 +49491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J19", "location identifier": "J19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25997,7 +49514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26011,6 +49534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26020,7 +49571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J20", "location identifier": "J20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26039,7 +49594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26053,6 +49614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26062,7 +49651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J21", "location identifier": "J21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26081,7 +49674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26095,6 +49694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26104,7 +49731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J22", "location identifier": "J22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26123,7 +49754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26137,6 +49774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26146,7 +49811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J23", "location identifier": "J23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26165,7 +49834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26179,6 +49854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26188,7 +49891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM J24", "location identifier": "J24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26207,7 +49914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26221,6 +49934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26230,7 +49971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K1", "location identifier": "K1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26249,7 +49994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26263,6 +50014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26272,7 +50051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K2", "location identifier": "K2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26291,7 +50074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26305,6 +50094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26314,7 +50131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K3", "location identifier": "K3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26333,7 +50154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26347,6 +50174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26356,7 +50211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K4", "location identifier": "K4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26375,7 +50234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26389,6 +50254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26398,7 +50291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K5", "location identifier": "K5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26417,7 +50314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26431,6 +50334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26440,7 +50371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K6", "location identifier": "K6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26459,7 +50394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26473,6 +50414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26482,7 +50451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K7", "location identifier": "K7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26501,7 +50474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26515,6 +50494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26524,7 +50531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K8", "location identifier": "K8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26543,7 +50554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26557,6 +50574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26566,7 +50611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K9", "location identifier": "K9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26585,7 +50634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26599,6 +50654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26608,7 +50691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K10", "location identifier": "K10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26627,7 +50714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26641,6 +50734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26650,7 +50771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K11", "location identifier": "K11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26669,7 +50794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26683,6 +50814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26692,7 +50851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K12", "location identifier": "K12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26711,7 +50874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26725,6 +50894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26734,7 +50931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K13", "location identifier": "K13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26753,7 +50954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26767,6 +50974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26776,7 +51011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K14", "location identifier": "K14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26795,7 +51034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26809,6 +51054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26818,7 +51091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K15", "location identifier": "K15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26837,7 +51114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26851,6 +51134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26860,7 +51171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K16", "location identifier": "K16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26879,7 +51194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26893,6 +51214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26902,7 +51251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K17", "location identifier": "K17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26921,7 +51274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26935,6 +51294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26944,7 +51331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K18", "location identifier": "K18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26963,7 +51354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -26977,6 +51374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -26986,7 +51411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K19", "location identifier": "K19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27005,7 +51434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27019,6 +51454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27028,7 +51491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K20", "location identifier": "K20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27047,7 +51514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27061,6 +51534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27070,7 +51571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K21", "location identifier": "K21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27089,7 +51594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27103,6 +51614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27112,7 +51651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K22", "location identifier": "K22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27131,7 +51674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27145,6 +51694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27154,7 +51731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K23", "location identifier": "K23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27173,7 +51754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27187,6 +51774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27196,7 +51811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM K24", "location identifier": "K24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27215,7 +51834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27229,6 +51854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27238,7 +51891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L1", "location identifier": "L1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27257,7 +51914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27271,6 +51934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27280,7 +51971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L2", "location identifier": "L2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27299,7 +51994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27313,6 +52014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27322,7 +52051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L3", "location identifier": "L3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27341,7 +52074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27355,6 +52094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27364,7 +52131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L4", "location identifier": "L4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27383,7 +52154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27397,6 +52174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27406,7 +52211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L5", "location identifier": "L5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27425,7 +52234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27439,6 +52254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27448,7 +52291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L6", "location identifier": "L6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27467,7 +52314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27481,6 +52334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27490,7 +52371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L7", "location identifier": "L7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27509,7 +52394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27523,6 +52414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27532,7 +52451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L8", "location identifier": "L8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27551,7 +52474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27565,6 +52494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27574,7 +52531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L9", "location identifier": "L9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27593,7 +52554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27607,6 +52574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27616,7 +52611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L10", "location identifier": "L10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27635,7 +52634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27649,6 +52654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27658,7 +52691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L11", "location identifier": "L11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27677,7 +52714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27691,6 +52734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27700,7 +52771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L12", "location identifier": "L12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27719,7 +52794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27733,6 +52814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27742,7 +52851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L13", "location identifier": "L13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27761,7 +52874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27775,6 +52894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27784,7 +52931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L14", "location identifier": "L14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27803,7 +52954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27817,6 +52974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27826,7 +53011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L15", "location identifier": "L15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27845,7 +53034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27859,6 +53054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27868,7 +53091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L16", "location identifier": "L16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27887,7 +53114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27901,6 +53134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27910,7 +53171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L17", "location identifier": "L17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27929,7 +53194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27943,6 +53214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27952,7 +53251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L18", "location identifier": "L18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27971,7 +53274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -27985,6 +53294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -27994,7 +53331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L19", "location identifier": "L19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28013,7 +53354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28027,6 +53374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28036,7 +53411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L20", "location identifier": "L20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28055,7 +53434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28069,6 +53454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28078,7 +53491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L21", "location identifier": "L21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28097,7 +53514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28111,6 +53534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28120,7 +53571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L22", "location identifier": "L22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28139,7 +53594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28153,6 +53614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28162,7 +53651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L23", "location identifier": "L23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28181,7 +53674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28195,6 +53694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28204,7 +53731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM L24", "location identifier": "L24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28223,7 +53754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28237,6 +53774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28246,7 +53811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M1", "location identifier": "M1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28265,7 +53834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28279,6 +53854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28288,7 +53891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M2", "location identifier": "M2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28307,7 +53914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28321,6 +53934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28330,7 +53971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M3", "location identifier": "M3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28349,7 +53994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28363,6 +54014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28372,7 +54051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M4", "location identifier": "M4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28391,7 +54074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28405,6 +54094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28414,7 +54131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M5", "location identifier": "M5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28433,7 +54154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28447,6 +54174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28456,7 +54211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M6", "location identifier": "M6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28475,7 +54234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28489,6 +54254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28498,7 +54291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M7", "location identifier": "M7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28517,7 +54314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28531,6 +54334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28540,7 +54371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M8", "location identifier": "M8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28559,7 +54394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28573,6 +54414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28582,7 +54451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M9", "location identifier": "M9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28601,7 +54474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28615,6 +54494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28624,7 +54531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M10", "location identifier": "M10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28643,7 +54554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28657,6 +54574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28666,7 +54611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M11", "location identifier": "M11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28685,7 +54634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28699,6 +54654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28708,7 +54691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M12", "location identifier": "M12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28727,7 +54714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28741,6 +54734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28750,7 +54771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M13", "location identifier": "M13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28769,7 +54794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28783,6 +54814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28792,7 +54851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M14", "location identifier": "M14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28811,7 +54874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28825,6 +54894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28834,7 +54931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M15", "location identifier": "M15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28853,7 +54954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28867,6 +54974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28876,7 +55011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M16", "location identifier": "M16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28895,7 +55034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28909,6 +55054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28918,7 +55091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M17", "location identifier": "M17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28937,7 +55114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28951,6 +55134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -28960,7 +55171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M18", "location identifier": "M18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28979,7 +55194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -28993,6 +55214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29002,7 +55251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M19", "location identifier": "M19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29021,7 +55274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29035,6 +55294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29044,7 +55331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M20", "location identifier": "M20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29063,7 +55354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29077,6 +55374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29086,7 +55411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M21", "location identifier": "M21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29105,7 +55434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29119,6 +55454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29128,7 +55491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M22", "location identifier": "M22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29147,7 +55514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29161,6 +55534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29170,7 +55571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M23", "location identifier": "M23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29189,7 +55594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29203,6 +55614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29212,7 +55651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM M24", "location identifier": "M24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29231,7 +55674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29245,6 +55694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29254,7 +55731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N1", "location identifier": "N1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29273,7 +55754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29287,6 +55774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29296,7 +55811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N2", "location identifier": "N2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29315,7 +55834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29329,6 +55854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29338,7 +55891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N3", "location identifier": "N3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29357,7 +55914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29371,6 +55934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29380,7 +55971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N4", "location identifier": "N4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29399,7 +55994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29413,6 +56014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29422,7 +56051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N5", "location identifier": "N5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29441,7 +56074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29455,6 +56094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29464,7 +56131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N6", "location identifier": "N6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29483,7 +56154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29497,6 +56174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29506,7 +56211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N7", "location identifier": "N7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29525,7 +56234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29539,6 +56254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29548,7 +56291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N8", "location identifier": "N8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29567,7 +56314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29581,6 +56334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29590,7 +56371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N9", "location identifier": "N9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29609,7 +56394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29623,6 +56414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29632,7 +56451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N10", "location identifier": "N10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29651,7 +56474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29665,6 +56494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29674,7 +56531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N11", "location identifier": "N11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29693,7 +56554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29707,6 +56574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29716,7 +56611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N12", "location identifier": "N12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29735,7 +56634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29749,6 +56654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29758,7 +56691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N13", "location identifier": "N13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29777,7 +56714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29791,6 +56734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29800,7 +56771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N14", "location identifier": "N14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29819,7 +56794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29833,6 +56814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29842,7 +56851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N15", "location identifier": "N15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29861,7 +56874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29875,6 +56894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29884,7 +56931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N16", "location identifier": "N16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29903,7 +56954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29917,6 +56974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29926,7 +57011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N17", "location identifier": "N17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29945,7 +57034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -29959,6 +57054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -29968,7 +57091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N18", "location identifier": "N18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29987,7 +57114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30001,6 +57134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30010,7 +57171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N19", "location identifier": "N19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30029,7 +57194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30043,6 +57214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30052,7 +57251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N20", "location identifier": "N20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30071,7 +57274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30085,6 +57294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30094,7 +57331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N21", "location identifier": "N21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30113,7 +57354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30127,6 +57374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30136,7 +57411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N22", "location identifier": "N22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30155,7 +57434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30169,6 +57454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30178,7 +57491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N23", "location identifier": "N23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30197,7 +57514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30211,6 +57534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30220,7 +57571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM N24", "location identifier": "N24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30239,7 +57594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30253,6 +57614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30262,7 +57651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O1", "location identifier": "O1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30281,7 +57674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30295,6 +57694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30304,7 +57731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O2", "location identifier": "O2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30323,7 +57754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30337,6 +57774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30346,7 +57811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O3", "location identifier": "O3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30365,7 +57834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30379,6 +57854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30388,7 +57891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O4", "location identifier": "O4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30407,7 +57914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30421,6 +57934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30430,7 +57971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O5", "location identifier": "O5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30449,7 +57994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30463,6 +58014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30472,7 +58051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O6", "location identifier": "O6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30491,7 +58074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30505,6 +58094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30514,7 +58131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O7", "location identifier": "O7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30533,7 +58154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30547,6 +58174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30556,7 +58211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O8", "location identifier": "O8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30575,7 +58234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30589,6 +58254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30598,7 +58291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O9", "location identifier": "O9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30617,7 +58314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30631,6 +58334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30640,7 +58371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O10", "location identifier": "O10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30659,7 +58394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30673,6 +58414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30682,7 +58451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O11", "location identifier": "O11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30701,7 +58474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30715,6 +58494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30724,7 +58531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O12", "location identifier": "O12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30743,7 +58554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30757,6 +58574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30766,7 +58611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O13", "location identifier": "O13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30785,7 +58634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30799,6 +58654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30808,7 +58691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O14", "location identifier": "O14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30827,7 +58714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30841,6 +58734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30850,7 +58771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O15", "location identifier": "O15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30869,7 +58794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30883,6 +58814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30892,7 +58851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O16", "location identifier": "O16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30911,7 +58874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30925,6 +58894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30934,7 +58931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O17", "location identifier": "O17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30953,7 +58954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -30967,6 +58974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -30976,7 +59011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O18", "location identifier": "O18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30995,7 +59034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31009,6 +59054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31018,7 +59091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O19", "location identifier": "O19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31037,7 +59114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31051,6 +59134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31060,7 +59171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O20", "location identifier": "O20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31079,7 +59194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31093,6 +59214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31102,7 +59251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O21", "location identifier": "O21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31121,7 +59274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31135,6 +59294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31144,7 +59331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O22", "location identifier": "O22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31163,7 +59354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31177,6 +59374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31186,7 +59411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O23", "location identifier": "O23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31205,7 +59434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31219,6 +59454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31228,7 +59491,11 @@ "sample identifier": "8/22/2023 12:16:57 PM O24", "location identifier": "O24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31247,7 +59514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31261,6 +59534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31270,7 +59571,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P1", "location identifier": "P1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31289,7 +59594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31303,6 +59614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31312,7 +59651,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P2", "location identifier": "P2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31331,7 +59674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31345,6 +59694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31354,7 +59731,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P3", "location identifier": "P3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31373,7 +59754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31387,6 +59774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31396,7 +59811,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P4", "location identifier": "P4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31415,7 +59834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31429,6 +59854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31438,7 +59891,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P5", "location identifier": "P5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31457,7 +59914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31471,6 +59934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31480,7 +59971,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P6", "location identifier": "P6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31499,7 +59994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31513,6 +60014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31522,7 +60051,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P7", "location identifier": "P7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31541,7 +60074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31555,6 +60094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31564,7 +60131,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P8", "location identifier": "P8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31583,7 +60154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31597,6 +60174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31606,7 +60211,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P9", "location identifier": "P9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31625,7 +60234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31639,6 +60254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31648,7 +60291,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P10", "location identifier": "P10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31667,7 +60314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31681,6 +60334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31690,7 +60371,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P11", "location identifier": "P11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31709,7 +60394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31723,6 +60414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31732,7 +60451,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P12", "location identifier": "P12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31751,7 +60474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31765,6 +60494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31774,7 +60531,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P13", "location identifier": "P13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31793,7 +60554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31807,6 +60574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31816,7 +60611,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P14", "location identifier": "P14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31835,7 +60634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31849,6 +60654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31858,7 +60691,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P15", "location identifier": "P15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31877,7 +60714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31891,6 +60734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31900,7 +60771,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P16", "location identifier": "P16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31919,7 +60794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31933,6 +60814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31942,7 +60851,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P17", "location identifier": "P17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31961,7 +60874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -31975,6 +60894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -31984,7 +60931,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P18", "location identifier": "P18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -32003,7 +60954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -32017,6 +60974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -32026,7 +61011,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P19", "location identifier": "P19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -32045,7 +61034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -32059,6 +61054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -32068,7 +61091,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P20", "location identifier": "P20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -32087,7 +61114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -32101,6 +61134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -32110,7 +61171,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P21", "location identifier": "P21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -32129,7 +61194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -32143,6 +61214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -32152,7 +61251,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P22", "location identifier": "P22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -32171,7 +61274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -32185,6 +61294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -32194,7 +61331,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P23", "location identifier": "P23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -32213,7 +61354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } }, { @@ -32227,6 +61374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Number of rows": 16.0, + "Number of columns": 24.0, + "Height of the plate": "14.35 mm" } } ] @@ -32236,7 +61411,11 @@ "sample identifier": "8/22/2023 12:16:57 PM P24", "location identifier": "P24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -32255,7 +61434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Assay Started": "8/22/2023 12:15:09 PM", + "Protocol Name": "DL LUM test", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Exported": "8/22/2023 12:18:26 PM" + } } } ], @@ -45325,7 +74510,7 @@ "file name": "PE_Envision_luminescence_example01.csv", "UNC path": "tests/parsers/perkin_elmer_envision/testdata/PE_Envision_luminescence_example01.csv", "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.80", + "ASM converter version": "0.1.105", "software name": "EnVision Workstation", "software version": "1.14.3049.1193" }, diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_missing_plate_maps.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_missing_plate_maps.json index 7ee3e88d4a..4d41f5b6bb 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_missing_plate_maps.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_missing_plate_maps.json @@ -13,6 +13,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22,7 +50,12 @@ "sample identifier": "8/22/2023 11:01:43 AM A1", "location identifier": "A1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0, + "Name of the plate type": "384 OptiPlate" + } }, "compartment temperature": { "value": 23.47, @@ -41,7 +74,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -55,6 +94,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -64,7 +131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A2", "location identifier": "A2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -83,7 +154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -97,6 +174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -106,7 +211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A3", "location identifier": "A3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -125,7 +234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -139,6 +254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -148,7 +291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A4", "location identifier": "A4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -167,7 +314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -181,6 +334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -190,7 +371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A5", "location identifier": "A5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -209,7 +394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -223,6 +414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -232,7 +451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A6", "location identifier": "A6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -251,7 +474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -265,6 +494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -274,7 +531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A7", "location identifier": "A7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -293,7 +554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -307,6 +574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -316,7 +611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A8", "location identifier": "A8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -335,7 +634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -349,6 +654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -358,7 +691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A9", "location identifier": "A9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -377,7 +714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -391,6 +734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -400,7 +771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A10", "location identifier": "A10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -419,7 +794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -433,6 +814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -442,7 +851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A11", "location identifier": "A11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -461,7 +874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -475,6 +894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -484,7 +931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A12", "location identifier": "A12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -503,7 +954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -517,6 +974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -526,7 +1011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A13", "location identifier": "A13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -545,7 +1034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -559,6 +1054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -568,7 +1091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A14", "location identifier": "A14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -587,7 +1114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -601,6 +1134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -610,7 +1171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A15", "location identifier": "A15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -629,7 +1194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -643,6 +1214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -652,7 +1251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A16", "location identifier": "A16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -671,7 +1274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -685,6 +1294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -694,7 +1331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A17", "location identifier": "A17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -713,7 +1354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -727,6 +1374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -736,7 +1411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A18", "location identifier": "A18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -755,7 +1434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -769,6 +1454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -778,7 +1491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A19", "location identifier": "A19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -797,7 +1514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -811,6 +1534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -820,7 +1571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A20", "location identifier": "A20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -839,7 +1594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -853,6 +1614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -862,7 +1651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A21", "location identifier": "A21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -881,7 +1674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -895,6 +1694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -904,7 +1731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A22", "location identifier": "A22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -923,7 +1754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -937,6 +1774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -946,7 +1811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A23", "location identifier": "A23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -965,7 +1834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -979,6 +1854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -988,7 +1891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM A24", "location identifier": "A24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1007,7 +1914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1021,6 +1934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1030,7 +1971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B1", "location identifier": "B1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1049,7 +1994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1063,6 +2014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1072,7 +2051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B2", "location identifier": "B2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1091,7 +2074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1105,6 +2094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1114,7 +2131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B3", "location identifier": "B3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1133,7 +2154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1147,6 +2174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1156,7 +2211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B4", "location identifier": "B4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1175,7 +2234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1189,6 +2254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1198,7 +2291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B5", "location identifier": "B5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1217,7 +2314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1231,6 +2334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1240,7 +2371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B6", "location identifier": "B6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1259,7 +2394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1273,6 +2414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1282,7 +2451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B7", "location identifier": "B7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1301,7 +2474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1315,6 +2494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1324,7 +2531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B8", "location identifier": "B8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1343,7 +2554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1357,6 +2574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1366,7 +2611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B9", "location identifier": "B9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1385,7 +2634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1399,6 +2654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1408,7 +2691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B10", "location identifier": "B10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1427,7 +2714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1441,6 +2734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1450,7 +2771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B11", "location identifier": "B11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1469,7 +2794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1483,6 +2814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1492,7 +2851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B12", "location identifier": "B12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1511,7 +2874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1525,6 +2894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1534,7 +2931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B13", "location identifier": "B13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1553,7 +2954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1567,6 +2974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1576,7 +3011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B14", "location identifier": "B14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1595,7 +3034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1609,6 +3054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1618,7 +3091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B15", "location identifier": "B15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1637,7 +3114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1651,6 +3134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1660,7 +3171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B16", "location identifier": "B16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1679,7 +3194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1693,6 +3214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1702,7 +3251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B17", "location identifier": "B17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1721,7 +3274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1735,6 +3294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1744,7 +3331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B18", "location identifier": "B18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1763,7 +3354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1777,6 +3374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1786,7 +3411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B19", "location identifier": "B19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1805,7 +3434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1819,6 +3454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1828,7 +3491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B20", "location identifier": "B20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1847,7 +3514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1861,6 +3534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1870,7 +3571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B21", "location identifier": "B21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1889,7 +3594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1903,6 +3614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1912,7 +3651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B22", "location identifier": "B22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1931,7 +3674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1945,6 +3694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1954,7 +3731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B23", "location identifier": "B23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -1973,7 +3754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -1987,6 +3774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -1996,7 +3811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM B24", "location identifier": "B24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2015,7 +3834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2029,6 +3854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2038,7 +3891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C1", "location identifier": "C1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2057,7 +3914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2071,6 +3934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2080,7 +3971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C2", "location identifier": "C2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2099,7 +3994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2113,6 +4014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2122,7 +4051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C3", "location identifier": "C3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2141,7 +4074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2155,6 +4094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2164,7 +4131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C4", "location identifier": "C4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2183,7 +4154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2197,6 +4174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2206,7 +4211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C5", "location identifier": "C5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2225,7 +4234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2239,6 +4254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2248,7 +4291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C6", "location identifier": "C6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2267,7 +4314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2281,6 +4334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2290,7 +4371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C7", "location identifier": "C7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2309,7 +4394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2323,6 +4414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2332,7 +4451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C8", "location identifier": "C8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2351,7 +4474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2365,6 +4494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2374,7 +4531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C9", "location identifier": "C9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2393,7 +4554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2407,6 +4574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2416,7 +4611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C10", "location identifier": "C10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2435,7 +4634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2449,6 +4654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2458,7 +4691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C11", "location identifier": "C11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2477,7 +4714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2491,6 +4734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2500,7 +4771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C12", "location identifier": "C12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2519,7 +4794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2533,6 +4814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2542,7 +4851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C13", "location identifier": "C13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2561,7 +4874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2575,6 +4894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2584,7 +4931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C14", "location identifier": "C14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2603,7 +4954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2617,6 +4974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2626,7 +5011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C15", "location identifier": "C15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2645,7 +5034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2659,6 +5054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2668,7 +5091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C16", "location identifier": "C16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2687,7 +5114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2701,6 +5134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2710,7 +5171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C17", "location identifier": "C17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2729,7 +5194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2743,6 +5214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2752,7 +5251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C18", "location identifier": "C18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2771,7 +5274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2785,6 +5294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2794,7 +5331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C19", "location identifier": "C19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2813,7 +5354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2827,6 +5374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2836,7 +5411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C20", "location identifier": "C20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2855,7 +5434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2869,6 +5454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2878,7 +5491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C21", "location identifier": "C21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2897,7 +5514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2911,6 +5534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2920,7 +5571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C22", "location identifier": "C22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2939,7 +5594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2953,6 +5614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -2962,7 +5651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C23", "location identifier": "C23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -2981,7 +5674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -2995,6 +5694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3004,7 +5731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM C24", "location identifier": "C24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3023,7 +5754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3037,6 +5774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3046,7 +5811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D1", "location identifier": "D1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3065,7 +5834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3079,6 +5854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3088,7 +5891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D2", "location identifier": "D2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3107,7 +5914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3121,6 +5934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3130,7 +5971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D3", "location identifier": "D3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3149,7 +5994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3163,6 +6014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3172,7 +6051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D4", "location identifier": "D4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3191,7 +6074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3205,6 +6094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3214,7 +6131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D5", "location identifier": "D5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3233,7 +6154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3247,6 +6174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3256,7 +6211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D6", "location identifier": "D6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3275,7 +6234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3289,6 +6254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3298,7 +6291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D7", "location identifier": "D7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3317,7 +6314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3331,6 +6334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3340,7 +6371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D8", "location identifier": "D8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3359,7 +6394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3373,6 +6414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3382,7 +6451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D9", "location identifier": "D9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3401,7 +6474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3415,6 +6494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3424,7 +6531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D10", "location identifier": "D10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3443,7 +6554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3457,6 +6574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3466,7 +6611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D11", "location identifier": "D11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3485,7 +6634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3499,6 +6654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3508,7 +6691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D12", "location identifier": "D12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3527,7 +6714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3541,6 +6734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3550,7 +6771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D13", "location identifier": "D13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3569,7 +6794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3583,6 +6814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3592,7 +6851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D14", "location identifier": "D14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3611,7 +6874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3625,6 +6894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3634,7 +6931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D15", "location identifier": "D15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3653,7 +6954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3667,6 +6974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3676,7 +7011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D16", "location identifier": "D16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3695,7 +7034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3709,6 +7054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3718,7 +7091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D17", "location identifier": "D17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3737,7 +7114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3751,6 +7134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3760,7 +7171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D18", "location identifier": "D18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3779,7 +7194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3793,6 +7214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3802,7 +7251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D19", "location identifier": "D19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3821,7 +7274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3835,6 +7294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3844,7 +7331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D20", "location identifier": "D20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3863,7 +7354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3877,6 +7374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3886,7 +7411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D21", "location identifier": "D21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3905,7 +7434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3919,6 +7454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3928,7 +7491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D22", "location identifier": "D22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3947,7 +7514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -3961,6 +7534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -3970,7 +7571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D23", "location identifier": "D23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -3989,7 +7594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4003,6 +7614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4012,7 +7651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM D24", "location identifier": "D24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4031,7 +7674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4045,6 +7694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4054,7 +7731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E1", "location identifier": "E1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4073,7 +7754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4087,6 +7774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4096,7 +7811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E2", "location identifier": "E2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4115,7 +7834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4129,6 +7854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4138,7 +7891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E3", "location identifier": "E3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4157,7 +7914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4171,6 +7934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4180,7 +7971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E4", "location identifier": "E4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4199,7 +7994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4213,6 +8014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4222,7 +8051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E5", "location identifier": "E5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4241,7 +8074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4255,6 +8094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4264,7 +8131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E6", "location identifier": "E6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4283,7 +8154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4297,6 +8174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4306,7 +8211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E7", "location identifier": "E7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4325,7 +8234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4339,6 +8254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4348,7 +8291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E8", "location identifier": "E8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4367,7 +8314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4381,6 +8334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4390,7 +8371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E9", "location identifier": "E9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4409,7 +8394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4423,6 +8414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4432,7 +8451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E10", "location identifier": "E10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4451,7 +8474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4465,6 +8494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4474,7 +8531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E11", "location identifier": "E11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4493,7 +8554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4507,6 +8574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4516,7 +8611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E12", "location identifier": "E12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4535,7 +8634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4549,6 +8654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4558,7 +8691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E13", "location identifier": "E13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4577,7 +8714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4591,6 +8734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4600,7 +8771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E14", "location identifier": "E14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4619,7 +8794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4633,6 +8814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4642,7 +8851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E15", "location identifier": "E15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4661,7 +8874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4675,6 +8894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4684,7 +8931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E16", "location identifier": "E16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4703,7 +8954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4717,6 +8974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4726,7 +9011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E17", "location identifier": "E17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4745,7 +9034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4759,6 +9054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4768,7 +9091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E18", "location identifier": "E18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4787,7 +9114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4801,6 +9134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4810,7 +9171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E19", "location identifier": "E19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4829,7 +9194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4843,6 +9214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4852,7 +9251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E20", "location identifier": "E20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4871,7 +9274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4885,6 +9294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4894,7 +9331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E21", "location identifier": "E21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4913,7 +9354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4927,6 +9374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4936,7 +9411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E22", "location identifier": "E22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4955,7 +9434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -4969,6 +9454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -4978,7 +9491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E23", "location identifier": "E23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -4997,7 +9514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5011,6 +9534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5020,7 +9571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM E24", "location identifier": "E24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5039,7 +9594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5053,6 +9614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5062,7 +9651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F1", "location identifier": "F1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5081,7 +9674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5095,6 +9694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5104,7 +9731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F2", "location identifier": "F2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5123,7 +9754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5137,6 +9774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5146,7 +9811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F3", "location identifier": "F3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5165,7 +9834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5179,6 +9854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5188,7 +9891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F4", "location identifier": "F4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5207,7 +9914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5221,6 +9934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5230,7 +9971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F5", "location identifier": "F5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5249,7 +9994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5263,6 +10014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5272,7 +10051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F6", "location identifier": "F6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5291,7 +10074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5305,6 +10094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5314,7 +10131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F7", "location identifier": "F7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5333,7 +10154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5347,6 +10174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5356,7 +10211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F8", "location identifier": "F8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5375,7 +10234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5389,6 +10254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5398,7 +10291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F9", "location identifier": "F9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5417,7 +10314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5431,6 +10334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5440,7 +10371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F10", "location identifier": "F10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5459,7 +10394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5473,6 +10414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5482,7 +10451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F11", "location identifier": "F11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5501,7 +10474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5515,6 +10494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5524,7 +10531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F12", "location identifier": "F12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5543,7 +10554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5557,6 +10574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5566,7 +10611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F13", "location identifier": "F13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5585,7 +10634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5599,6 +10654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5608,7 +10691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F14", "location identifier": "F14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5627,7 +10714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5641,6 +10734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5650,7 +10771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F15", "location identifier": "F15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5669,7 +10794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5683,6 +10814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5692,7 +10851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F16", "location identifier": "F16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5711,7 +10874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5725,6 +10894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5734,7 +10931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F17", "location identifier": "F17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5753,7 +10954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5767,6 +10974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5776,7 +11011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F18", "location identifier": "F18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5795,7 +11034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5809,6 +11054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5818,7 +11091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F19", "location identifier": "F19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5837,7 +11114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5851,6 +11134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5860,7 +11171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F20", "location identifier": "F20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5879,7 +11194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5893,6 +11214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5902,7 +11251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F21", "location identifier": "F21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5921,7 +11274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5935,6 +11294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5944,7 +11331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F22", "location identifier": "F22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -5963,7 +11354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -5977,6 +11374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -5986,7 +11411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F23", "location identifier": "F23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6005,7 +11434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6019,6 +11454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6028,7 +11491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM F24", "location identifier": "F24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6047,7 +11514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6061,6 +11534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6070,7 +11571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G1", "location identifier": "G1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6089,7 +11594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6103,6 +11614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6112,7 +11651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G2", "location identifier": "G2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6131,7 +11674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6145,6 +11694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6154,7 +11731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G3", "location identifier": "G3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6173,7 +11754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6187,6 +11774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6196,7 +11811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G4", "location identifier": "G4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6215,7 +11834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6229,6 +11854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6238,7 +11891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G5", "location identifier": "G5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6257,7 +11914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6271,6 +11934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6280,7 +11971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G6", "location identifier": "G6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6299,7 +11994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6313,6 +12014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6322,7 +12051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G7", "location identifier": "G7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6341,7 +12074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6355,6 +12094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6364,7 +12131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G8", "location identifier": "G8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6383,7 +12154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6397,6 +12174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6406,7 +12211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G9", "location identifier": "G9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6425,7 +12234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6439,6 +12254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6448,7 +12291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G10", "location identifier": "G10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6467,7 +12314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6481,6 +12334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6490,7 +12371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G11", "location identifier": "G11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6509,7 +12394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6523,6 +12414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6532,7 +12451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G12", "location identifier": "G12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6551,7 +12474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6565,6 +12494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6574,7 +12531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G13", "location identifier": "G13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6593,7 +12554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6607,6 +12574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6616,7 +12611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G14", "location identifier": "G14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6635,7 +12634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6649,6 +12654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6658,7 +12691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G15", "location identifier": "G15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6677,7 +12714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6691,6 +12734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6700,7 +12771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G16", "location identifier": "G16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6719,7 +12794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6733,6 +12814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6742,7 +12851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G17", "location identifier": "G17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6761,7 +12874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6775,6 +12894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6784,7 +12931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G18", "location identifier": "G18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6803,7 +12954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6817,6 +12974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6826,7 +13011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G19", "location identifier": "G19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6845,7 +13034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6859,6 +13054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6868,7 +13091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G20", "location identifier": "G20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6887,7 +13114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6901,6 +13134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6910,7 +13171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G21", "location identifier": "G21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6929,7 +13194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6943,6 +13214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6952,7 +13251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G22", "location identifier": "G22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -6971,7 +13274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -6985,6 +13294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -6994,7 +13331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G23", "location identifier": "G23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7013,7 +13354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7027,6 +13374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7036,7 +13411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM G24", "location identifier": "G24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7055,7 +13434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7069,6 +13454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7078,7 +13491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H1", "location identifier": "H1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7097,7 +13514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7111,6 +13534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7120,7 +13571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H2", "location identifier": "H2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7139,7 +13594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7153,6 +13614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7162,7 +13651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H3", "location identifier": "H3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7181,7 +13674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7195,6 +13694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7204,7 +13731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H4", "location identifier": "H4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7223,7 +13754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7237,6 +13774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7246,7 +13811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H5", "location identifier": "H5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7265,7 +13834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7279,6 +13854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7288,7 +13891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H6", "location identifier": "H6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7307,7 +13914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7321,6 +13934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7330,7 +13971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H7", "location identifier": "H7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7349,7 +13994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7363,6 +14014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7372,7 +14051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H8", "location identifier": "H8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7391,7 +14074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7405,6 +14094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7414,7 +14131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H9", "location identifier": "H9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7433,7 +14154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7447,6 +14174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7456,7 +14211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H10", "location identifier": "H10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7475,7 +14234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7489,6 +14254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7498,7 +14291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H11", "location identifier": "H11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7517,7 +14314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7531,6 +14334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7540,7 +14371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H12", "location identifier": "H12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7559,7 +14394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7573,6 +14414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7582,7 +14451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H13", "location identifier": "H13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7601,7 +14474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7615,6 +14494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7624,7 +14531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H14", "location identifier": "H14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7643,7 +14554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7657,6 +14574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7666,7 +14611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H15", "location identifier": "H15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7685,7 +14634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7699,6 +14654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7708,7 +14691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H16", "location identifier": "H16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7727,7 +14714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7741,6 +14734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7750,7 +14771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H17", "location identifier": "H17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7769,7 +14794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7783,6 +14814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7792,7 +14851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H18", "location identifier": "H18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7811,7 +14874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7825,6 +14894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7834,7 +14931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H19", "location identifier": "H19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7853,7 +14954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7867,6 +14974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7876,7 +15011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H20", "location identifier": "H20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7895,7 +15034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7909,6 +15054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7918,7 +15091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H21", "location identifier": "H21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7937,7 +15114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7951,6 +15134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -7960,7 +15171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H22", "location identifier": "H22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -7979,7 +15194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -7993,6 +15214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8002,7 +15251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H23", "location identifier": "H23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8021,7 +15274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8035,6 +15294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8044,7 +15331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM H24", "location identifier": "H24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8063,7 +15354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8077,6 +15374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8086,7 +15411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I1", "location identifier": "I1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8105,7 +15434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8119,6 +15454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8128,7 +15491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I2", "location identifier": "I2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8147,7 +15514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8161,6 +15534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8170,7 +15571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I3", "location identifier": "I3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8189,7 +15594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8203,6 +15614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8212,7 +15651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I4", "location identifier": "I4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8231,7 +15674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8245,6 +15694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8254,7 +15731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I5", "location identifier": "I5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8273,7 +15754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8287,6 +15774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8296,7 +15811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I6", "location identifier": "I6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8315,7 +15834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8329,6 +15854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8338,7 +15891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I7", "location identifier": "I7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8357,7 +15914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8371,6 +15934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8380,7 +15971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I8", "location identifier": "I8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8399,7 +15994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8413,6 +16014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8422,7 +16051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I9", "location identifier": "I9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8441,7 +16074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8455,6 +16094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8464,7 +16131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I10", "location identifier": "I10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8483,7 +16154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8497,6 +16174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8506,7 +16211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I11", "location identifier": "I11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8525,7 +16234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8539,6 +16254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8548,7 +16291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I12", "location identifier": "I12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8567,7 +16314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8581,6 +16334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8590,7 +16371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I13", "location identifier": "I13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8609,7 +16394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8623,6 +16414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8632,7 +16451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I14", "location identifier": "I14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8651,7 +16474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8665,6 +16494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8674,7 +16531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I15", "location identifier": "I15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8693,7 +16554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8707,6 +16574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8716,7 +16611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I16", "location identifier": "I16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8735,7 +16634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8749,6 +16654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8758,7 +16691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I17", "location identifier": "I17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8777,7 +16714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8791,6 +16734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8800,7 +16771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I18", "location identifier": "I18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8819,7 +16794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8833,6 +16814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8842,7 +16851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I19", "location identifier": "I19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8861,7 +16874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8875,6 +16894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8884,7 +16931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I20", "location identifier": "I20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8903,7 +16954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8917,6 +16974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8926,7 +17011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I21", "location identifier": "I21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8945,7 +17034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -8959,6 +17054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -8968,7 +17091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I22", "location identifier": "I22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -8987,7 +17114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9001,6 +17134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9010,7 +17171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I23", "location identifier": "I23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9029,7 +17194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9043,6 +17214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9052,7 +17251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM I24", "location identifier": "I24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9071,7 +17274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9085,6 +17294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9094,7 +17331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J1", "location identifier": "J1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9113,7 +17354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9127,6 +17374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9136,7 +17411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J2", "location identifier": "J2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9155,7 +17434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9169,6 +17454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9178,7 +17491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J3", "location identifier": "J3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9197,7 +17514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9211,6 +17534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9220,7 +17571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J4", "location identifier": "J4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9239,7 +17594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9253,6 +17614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9262,7 +17651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J5", "location identifier": "J5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9281,7 +17674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9295,6 +17694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9304,7 +17731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J6", "location identifier": "J6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9323,7 +17754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9337,6 +17774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9346,7 +17811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J7", "location identifier": "J7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9365,7 +17834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9379,6 +17854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9388,7 +17891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J8", "location identifier": "J8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9407,7 +17914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9421,6 +17934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9430,7 +17971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J9", "location identifier": "J9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9449,7 +17994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9463,6 +18014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9472,7 +18051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J10", "location identifier": "J10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9491,7 +18074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9505,6 +18094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9514,7 +18131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J11", "location identifier": "J11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9533,7 +18154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9547,6 +18174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9556,7 +18211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J12", "location identifier": "J12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9575,7 +18234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9589,6 +18254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9598,7 +18291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J13", "location identifier": "J13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9617,7 +18314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9631,6 +18334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9640,7 +18371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J14", "location identifier": "J14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9659,7 +18394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9673,6 +18414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9682,7 +18451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J15", "location identifier": "J15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9701,7 +18474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9715,6 +18494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9724,7 +18531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J16", "location identifier": "J16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9743,7 +18554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9757,6 +18574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9766,7 +18611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J17", "location identifier": "J17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9785,7 +18634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9799,6 +18654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9808,7 +18691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J18", "location identifier": "J18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9827,7 +18714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9841,6 +18734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9850,7 +18771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J19", "location identifier": "J19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9869,7 +18794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9883,6 +18814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9892,7 +18851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J20", "location identifier": "J20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9911,7 +18874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9925,6 +18894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9934,7 +18931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J21", "location identifier": "J21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9953,7 +18954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -9967,6 +18974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -9976,7 +19011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J22", "location identifier": "J22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -9995,7 +19034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10009,6 +19054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10018,7 +19091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J23", "location identifier": "J23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10037,7 +19114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10051,6 +19134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10060,7 +19171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM J24", "location identifier": "J24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10079,7 +19194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10093,6 +19214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10102,7 +19251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K1", "location identifier": "K1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10121,7 +19274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10135,6 +19294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10144,7 +19331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K2", "location identifier": "K2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10163,7 +19354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10177,6 +19374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10186,7 +19411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K3", "location identifier": "K3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10205,7 +19434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10219,6 +19454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10228,7 +19491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K4", "location identifier": "K4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10247,7 +19514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10261,6 +19534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10270,7 +19571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K5", "location identifier": "K5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10289,7 +19594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10303,6 +19614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10312,7 +19651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K6", "location identifier": "K6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10331,7 +19674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10345,6 +19694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10354,7 +19731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K7", "location identifier": "K7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10373,7 +19754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10387,6 +19774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10396,7 +19811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K8", "location identifier": "K8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10415,7 +19834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10429,6 +19854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10438,7 +19891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K9", "location identifier": "K9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10457,7 +19914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10471,6 +19934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10480,7 +19971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K10", "location identifier": "K10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10499,7 +19994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10513,6 +20014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10522,7 +20051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K11", "location identifier": "K11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10541,7 +20074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10555,6 +20094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10564,7 +20131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K12", "location identifier": "K12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10583,7 +20154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10597,6 +20174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10606,7 +20211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K13", "location identifier": "K13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10625,7 +20234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10639,6 +20254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10648,7 +20291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K14", "location identifier": "K14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10667,7 +20314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10681,6 +20334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10690,7 +20371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K15", "location identifier": "K15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10709,7 +20394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10723,6 +20414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10732,7 +20451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K16", "location identifier": "K16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10751,7 +20474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10765,6 +20494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10774,7 +20531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K17", "location identifier": "K17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10793,7 +20554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10807,6 +20574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10816,7 +20611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K18", "location identifier": "K18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10835,7 +20634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10849,6 +20654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10858,7 +20691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K19", "location identifier": "K19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10877,7 +20714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10891,6 +20734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10900,7 +20771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K20", "location identifier": "K20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10919,7 +20794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10933,6 +20814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10942,7 +20851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K21", "location identifier": "K21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -10961,7 +20874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -10975,6 +20894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -10984,7 +20931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K22", "location identifier": "K22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11003,7 +20954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11017,6 +20974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11026,7 +21011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K23", "location identifier": "K23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11045,7 +21034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11059,6 +21054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11068,7 +21091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM K24", "location identifier": "K24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11087,7 +21114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11101,6 +21134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11110,7 +21171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L1", "location identifier": "L1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11129,7 +21194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11143,6 +21214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11152,7 +21251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L2", "location identifier": "L2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11171,7 +21274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11185,6 +21294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11194,7 +21331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L3", "location identifier": "L3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11213,7 +21354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11227,6 +21374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11236,7 +21411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L4", "location identifier": "L4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11255,7 +21434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11269,6 +21454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11278,7 +21491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L5", "location identifier": "L5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11297,7 +21514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11311,6 +21534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11320,7 +21571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L6", "location identifier": "L6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11339,7 +21594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11353,6 +21614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11362,7 +21651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L7", "location identifier": "L7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11381,7 +21674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11395,6 +21694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11404,7 +21731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L8", "location identifier": "L8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11423,7 +21754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11437,6 +21774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11446,7 +21811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L9", "location identifier": "L9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11465,7 +21834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11479,6 +21854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11488,7 +21891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L10", "location identifier": "L10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11507,7 +21914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11521,6 +21934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11530,7 +21971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L11", "location identifier": "L11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11549,7 +21994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11563,6 +22014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11572,7 +22051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L12", "location identifier": "L12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11591,7 +22074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11605,6 +22094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11614,7 +22131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L13", "location identifier": "L13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11633,7 +22154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11647,6 +22174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11656,7 +22211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L14", "location identifier": "L14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11675,7 +22234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11689,6 +22254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11698,7 +22291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L15", "location identifier": "L15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11717,7 +22314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11731,6 +22334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11740,7 +22371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L16", "location identifier": "L16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11759,7 +22394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11773,6 +22414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11782,7 +22451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L17", "location identifier": "L17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11801,7 +22474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11815,6 +22494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11824,7 +22531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L18", "location identifier": "L18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11843,7 +22554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11857,6 +22574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11866,7 +22611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L19", "location identifier": "L19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11885,7 +22634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11899,6 +22654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11908,7 +22691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L20", "location identifier": "L20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11927,7 +22714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11941,6 +22734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11950,7 +22771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L21", "location identifier": "L21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -11969,7 +22794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -11983,6 +22814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -11992,7 +22851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L22", "location identifier": "L22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12011,7 +22874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12025,6 +22894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12034,7 +22931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L23", "location identifier": "L23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12053,7 +22954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12067,6 +22974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12076,7 +23011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM L24", "location identifier": "L24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12095,7 +23034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12109,6 +23054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12118,7 +23091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M1", "location identifier": "M1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12137,7 +23114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12151,6 +23134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12160,7 +23171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M2", "location identifier": "M2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12179,7 +23194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12193,6 +23214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12202,7 +23251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M3", "location identifier": "M3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12221,7 +23274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12235,6 +23294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12244,7 +23331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M4", "location identifier": "M4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12263,7 +23354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12277,6 +23374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12286,7 +23411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M5", "location identifier": "M5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12305,7 +23434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12319,6 +23454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12328,7 +23491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M6", "location identifier": "M6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12347,7 +23514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12361,6 +23534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12370,7 +23571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M7", "location identifier": "M7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12389,7 +23594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12403,6 +23614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12412,7 +23651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M8", "location identifier": "M8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12431,7 +23674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12445,6 +23694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12454,7 +23731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M9", "location identifier": "M9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12473,7 +23754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12487,6 +23774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12496,7 +23811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M10", "location identifier": "M10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12515,7 +23834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12529,6 +23854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12538,7 +23891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M11", "location identifier": "M11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12557,7 +23914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12571,6 +23934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12580,7 +23971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M12", "location identifier": "M12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12599,7 +23994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12613,6 +24014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12622,7 +24051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M13", "location identifier": "M13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12641,7 +24074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12655,6 +24094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12664,7 +24131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M14", "location identifier": "M14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12683,7 +24154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12697,6 +24174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12706,7 +24211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M15", "location identifier": "M15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12725,7 +24234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12739,6 +24254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12748,7 +24291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M16", "location identifier": "M16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12767,7 +24314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12781,6 +24334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12790,7 +24371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M17", "location identifier": "M17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12809,7 +24394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12823,6 +24414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12832,7 +24451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M18", "location identifier": "M18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12851,7 +24474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12865,6 +24494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12874,7 +24531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M19", "location identifier": "M19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12893,7 +24554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12907,6 +24574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12916,7 +24611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M20", "location identifier": "M20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12935,7 +24634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12949,6 +24654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -12958,7 +24691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M21", "location identifier": "M21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -12977,7 +24714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -12991,6 +24734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13000,7 +24771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M22", "location identifier": "M22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13019,7 +24794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13033,6 +24814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13042,7 +24851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M23", "location identifier": "M23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13061,7 +24874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13075,6 +24894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13084,7 +24931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM M24", "location identifier": "M24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13103,7 +24954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13117,6 +24974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13126,7 +25011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N1", "location identifier": "N1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13145,7 +25034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13159,6 +25054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13168,7 +25091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N2", "location identifier": "N2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13187,7 +25114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13201,6 +25134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13210,7 +25171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N3", "location identifier": "N3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13229,7 +25194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13243,6 +25214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13252,7 +25251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N4", "location identifier": "N4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13271,7 +25274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13285,6 +25294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13294,7 +25331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N5", "location identifier": "N5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13313,7 +25354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13327,6 +25374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13336,7 +25411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N6", "location identifier": "N6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13355,7 +25434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13369,6 +25454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13378,7 +25491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N7", "location identifier": "N7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13397,7 +25514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13411,6 +25534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13420,7 +25571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N8", "location identifier": "N8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13439,7 +25594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13453,6 +25614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13462,7 +25651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N9", "location identifier": "N9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13481,7 +25674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13495,6 +25694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13504,7 +25731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N10", "location identifier": "N10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13523,7 +25754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13537,6 +25774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13546,7 +25811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N11", "location identifier": "N11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13565,7 +25834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13579,6 +25854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13588,7 +25891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N12", "location identifier": "N12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13607,7 +25914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13621,6 +25934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13630,7 +25971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N13", "location identifier": "N13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13649,7 +25994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13663,6 +26014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13672,7 +26051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N14", "location identifier": "N14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13691,7 +26074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13705,6 +26094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13714,7 +26131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N15", "location identifier": "N15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13733,7 +26154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13747,6 +26174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13756,7 +26211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N16", "location identifier": "N16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13775,7 +26234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13789,6 +26254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13798,7 +26291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N17", "location identifier": "N17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13817,7 +26314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13831,6 +26334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13840,7 +26371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N18", "location identifier": "N18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13859,7 +26394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13873,6 +26414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13882,7 +26451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N19", "location identifier": "N19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13901,7 +26474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13915,6 +26494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13924,7 +26531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N20", "location identifier": "N20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13943,7 +26554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13957,6 +26574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -13966,7 +26611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N21", "location identifier": "N21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -13985,7 +26634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -13999,6 +26654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14008,7 +26691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N22", "location identifier": "N22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14027,7 +26714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14041,6 +26734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14050,7 +26771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N23", "location identifier": "N23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14069,7 +26794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14083,6 +26814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14092,7 +26851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM N24", "location identifier": "N24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14111,7 +26874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14125,6 +26894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14134,7 +26931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O1", "location identifier": "O1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14153,7 +26954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14167,6 +26974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14176,7 +27011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O2", "location identifier": "O2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14195,7 +27034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14209,6 +27054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14218,7 +27091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O3", "location identifier": "O3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14237,7 +27114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14251,6 +27134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14260,7 +27171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O4", "location identifier": "O4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14279,7 +27194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14293,6 +27214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14302,7 +27251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O5", "location identifier": "O5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14321,7 +27274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14335,6 +27294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14344,7 +27331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O6", "location identifier": "O6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14363,7 +27354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14377,6 +27374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14386,7 +27411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O7", "location identifier": "O7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14405,7 +27434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14419,6 +27454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14428,7 +27491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O8", "location identifier": "O8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14447,7 +27514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14461,6 +27534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14470,7 +27571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O9", "location identifier": "O9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14489,7 +27594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14503,6 +27614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14512,7 +27651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O10", "location identifier": "O10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14531,7 +27674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14545,6 +27694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14554,7 +27731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O11", "location identifier": "O11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14573,7 +27754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14587,6 +27774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14596,7 +27811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O12", "location identifier": "O12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14615,7 +27834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14629,6 +27854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14638,7 +27891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O13", "location identifier": "O13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14657,7 +27914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14671,6 +27934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14680,7 +27971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O14", "location identifier": "O14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14699,7 +27994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14713,6 +28014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14722,7 +28051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O15", "location identifier": "O15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14741,7 +28074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14755,6 +28094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14764,7 +28131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O16", "location identifier": "O16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14783,7 +28154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14797,6 +28174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14806,7 +28211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O17", "location identifier": "O17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14825,7 +28234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14839,6 +28254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14848,7 +28291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O18", "location identifier": "O18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14867,7 +28314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14881,6 +28334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14890,7 +28371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O19", "location identifier": "O19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14909,7 +28394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14923,6 +28414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14932,7 +28451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O20", "location identifier": "O20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14951,7 +28474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -14965,6 +28494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -14974,7 +28531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O21", "location identifier": "O21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -14993,7 +28554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15007,6 +28574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15016,7 +28611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O22", "location identifier": "O22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15035,7 +28634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15049,6 +28654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15058,7 +28691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O23", "location identifier": "O23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15077,7 +28714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15091,6 +28734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15100,7 +28771,11 @@ "sample identifier": "8/22/2023 11:01:43 AM O24", "location identifier": "O24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15119,7 +28794,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15133,6 +28814,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15142,7 +28851,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P1", "location identifier": "P1", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15161,7 +28874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15175,6 +28894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15184,7 +28931,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P2", "location identifier": "P2", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15203,7 +28954,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15217,6 +28974,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15226,7 +29011,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P3", "location identifier": "P3", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15245,7 +29034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15259,6 +29054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15268,7 +29091,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P4", "location identifier": "P4", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15287,7 +29114,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15301,6 +29134,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15310,7 +29171,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P5", "location identifier": "P5", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15329,7 +29194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15343,6 +29214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15352,7 +29251,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P6", "location identifier": "P6", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15371,7 +29274,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15385,6 +29294,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15394,7 +29331,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P7", "location identifier": "P7", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15413,7 +29354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15427,6 +29374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15436,7 +29411,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P8", "location identifier": "P8", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15455,7 +29434,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15469,6 +29454,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15478,7 +29491,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P9", "location identifier": "P9", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15497,7 +29514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15511,6 +29534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15520,7 +29571,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P10", "location identifier": "P10", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15539,7 +29594,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15553,6 +29614,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15562,7 +29651,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P11", "location identifier": "P11", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15581,7 +29674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15595,6 +29694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15604,7 +29731,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P12", "location identifier": "P12", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15623,7 +29754,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15637,6 +29774,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15646,7 +29811,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P13", "location identifier": "P13", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15665,7 +29834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15679,6 +29854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15688,7 +29891,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P14", "location identifier": "P14", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15707,7 +29914,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15721,6 +29934,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15730,7 +29971,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P15", "location identifier": "P15", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15749,7 +29994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15763,6 +30014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15772,7 +30051,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P16", "location identifier": "P16", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15791,7 +30074,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15805,6 +30094,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15814,7 +30131,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P17", "location identifier": "P17", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15833,7 +30154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15847,6 +30174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15856,7 +30211,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P18", "location identifier": "P18", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15875,7 +30234,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15889,6 +30254,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15898,7 +30291,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P19", "location identifier": "P19", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15917,7 +30314,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15931,6 +30334,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15940,7 +30371,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P20", "location identifier": "P20", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -15959,7 +30394,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -15973,6 +30414,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -15982,7 +30451,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P21", "location identifier": "P21", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16001,7 +30474,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16015,6 +30494,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16024,7 +30531,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P22", "location identifier": "P22", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16043,7 +30554,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16057,6 +30574,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16066,7 +30611,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P23", "location identifier": "P23", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16085,7 +30634,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16099,6 +30654,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 23.87, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 23.97, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.56, + "unit": "degC" + }, + "Humidity at start": { + "value": 46.9, + "unit": "%" + }, + "Humidity at end": { + "value": 47.5, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16108,7 +30691,11 @@ "sample identifier": "8/22/2023 11:01:43 AM P24", "location identifier": "P24", "sample role type": "unknown sample role", - "well plate identifier": "8/22/2023 11:01:43 AM" + "well plate identifier": "8/22/2023 11:01:43 AM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.47, @@ -16127,7 +30714,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16141,6 +30734,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16149,7 +30770,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A1", "location identifier": "A1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16168,7 +30793,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16182,6 +30813,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16190,7 +30849,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A2", "location identifier": "A2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16209,7 +30872,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16223,6 +30892,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16231,7 +30928,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A3", "location identifier": "A3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16250,7 +30951,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16264,6 +30971,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16272,7 +31007,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A4", "location identifier": "A4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16291,7 +31030,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16305,6 +31050,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16313,7 +31086,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A5", "location identifier": "A5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16332,7 +31109,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16346,6 +31129,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16354,7 +31165,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A6", "location identifier": "A6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16373,7 +31188,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16387,6 +31208,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16395,7 +31244,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A7", "location identifier": "A7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16414,7 +31267,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16428,6 +31287,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16436,7 +31323,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A8", "location identifier": "A8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16455,7 +31346,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16469,6 +31366,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16477,7 +31402,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A9", "location identifier": "A9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16496,7 +31425,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16510,6 +31445,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16518,7 +31481,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A10", "location identifier": "A10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16537,7 +31504,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16551,6 +31524,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16559,7 +31560,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A11", "location identifier": "A11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16578,7 +31583,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16592,6 +31603,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16600,7 +31639,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A12", "location identifier": "A12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16619,7 +31662,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16633,6 +31682,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16641,7 +31718,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A13", "location identifier": "A13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16660,7 +31741,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16674,6 +31761,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16682,7 +31797,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A14", "location identifier": "A14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16701,7 +31820,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16715,6 +31840,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16723,7 +31876,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A15", "location identifier": "A15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16742,7 +31899,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16756,6 +31919,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16764,7 +31955,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A16", "location identifier": "A16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16783,7 +31978,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16797,6 +31998,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16805,7 +32034,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A17", "location identifier": "A17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16824,7 +32057,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16838,6 +32077,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16846,7 +32113,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A18", "location identifier": "A18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16865,7 +32136,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16879,6 +32156,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16887,7 +32192,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A19", "location identifier": "A19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16906,7 +32215,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16920,6 +32235,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16928,7 +32271,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A20", "location identifier": "A20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16947,7 +32294,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -16961,6 +32314,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -16969,7 +32350,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A21", "location identifier": "A21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -16988,7 +32373,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17002,6 +32393,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17010,7 +32429,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A22", "location identifier": "A22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17029,7 +32452,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17043,6 +32472,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17051,7 +32508,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A23", "location identifier": "A23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17070,7 +32531,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17084,6 +32551,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17092,7 +32587,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A24", "location identifier": "A24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17111,7 +32610,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17125,6 +32630,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17133,7 +32666,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B1", "location identifier": "B1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17152,7 +32689,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17166,6 +32709,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17174,7 +32745,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B2", "location identifier": "B2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17193,7 +32768,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17207,6 +32788,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17215,7 +32824,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B3", "location identifier": "B3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17234,7 +32847,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17248,6 +32867,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17256,7 +32903,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B4", "location identifier": "B4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17275,7 +32926,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17289,6 +32946,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17297,7 +32982,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B5", "location identifier": "B5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17316,7 +33005,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17330,6 +33025,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17338,7 +33061,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B6", "location identifier": "B6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17357,7 +33084,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17371,6 +33104,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17379,7 +33140,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B7", "location identifier": "B7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17398,7 +33163,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17412,6 +33183,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17420,7 +33219,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B8", "location identifier": "B8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17439,7 +33242,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17453,6 +33262,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17461,7 +33298,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B9", "location identifier": "B9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17480,7 +33321,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17494,6 +33341,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17502,7 +33377,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B10", "location identifier": "B10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17521,7 +33400,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17535,6 +33420,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17543,7 +33456,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B11", "location identifier": "B11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17562,7 +33479,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17576,6 +33499,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17584,7 +33535,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B12", "location identifier": "B12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17603,7 +33558,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17617,6 +33578,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17625,7 +33614,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B13", "location identifier": "B13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17644,7 +33637,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17658,6 +33657,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17666,7 +33693,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B14", "location identifier": "B14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17685,7 +33716,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17699,6 +33736,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17707,7 +33772,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B15", "location identifier": "B15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17726,7 +33795,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17740,6 +33815,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17748,7 +33851,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B16", "location identifier": "B16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17767,7 +33874,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17781,6 +33894,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17789,7 +33930,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B17", "location identifier": "B17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17808,7 +33953,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17822,6 +33973,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17830,7 +34009,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B18", "location identifier": "B18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17849,7 +34032,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17863,6 +34052,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17871,7 +34088,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B19", "location identifier": "B19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17890,7 +34111,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17904,6 +34131,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17912,7 +34167,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B20", "location identifier": "B20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17931,7 +34190,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17945,6 +34210,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17953,7 +34246,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B21", "location identifier": "B21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -17972,7 +34269,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -17986,6 +34289,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -17994,7 +34325,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B22", "location identifier": "B22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18013,7 +34348,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18027,6 +34368,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18035,7 +34404,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B23", "location identifier": "B23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18054,7 +34427,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18068,6 +34447,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18076,7 +34483,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B24", "location identifier": "B24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18095,7 +34506,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18109,6 +34526,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18117,7 +34562,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C1", "location identifier": "C1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18136,7 +34585,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18150,6 +34605,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18158,7 +34641,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C2", "location identifier": "C2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18177,7 +34664,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18191,6 +34684,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18199,7 +34720,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C3", "location identifier": "C3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18218,7 +34743,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18232,6 +34763,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18240,7 +34799,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C4", "location identifier": "C4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18259,7 +34822,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18273,6 +34842,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18281,7 +34878,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C5", "location identifier": "C5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18300,7 +34901,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18314,6 +34921,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18322,7 +34957,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C6", "location identifier": "C6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18341,7 +34980,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18355,6 +35000,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18363,7 +35036,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C7", "location identifier": "C7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18382,7 +35059,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18396,6 +35079,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18404,7 +35115,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C8", "location identifier": "C8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18423,7 +35138,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18437,6 +35158,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18445,7 +35194,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C9", "location identifier": "C9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18464,7 +35217,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18478,6 +35237,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18486,7 +35273,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C10", "location identifier": "C10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18505,7 +35296,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18519,6 +35316,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18527,7 +35352,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C11", "location identifier": "C11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18546,7 +35375,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18560,6 +35395,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18568,7 +35431,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C12", "location identifier": "C12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18587,7 +35454,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18601,6 +35474,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18609,7 +35510,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C13", "location identifier": "C13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18628,7 +35533,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18642,6 +35553,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18650,7 +35589,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C14", "location identifier": "C14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18669,7 +35612,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18683,6 +35632,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18691,7 +35668,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C15", "location identifier": "C15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18710,7 +35691,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18724,6 +35711,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18732,7 +35747,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C16", "location identifier": "C16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18751,7 +35770,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18765,6 +35790,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18773,7 +35826,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C17", "location identifier": "C17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18792,7 +35849,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18806,6 +35869,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18814,7 +35905,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C18", "location identifier": "C18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18833,7 +35928,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18847,6 +35948,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18855,7 +35984,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C19", "location identifier": "C19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18874,7 +36007,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18888,6 +36027,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18896,7 +36063,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C20", "location identifier": "C20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18915,7 +36086,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18929,6 +36106,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18937,7 +36142,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C21", "location identifier": "C21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18956,7 +36165,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -18970,6 +36185,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -18978,7 +36221,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C22", "location identifier": "C22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -18997,7 +36244,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19011,6 +36264,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19019,7 +36300,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C23", "location identifier": "C23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19038,7 +36323,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19052,6 +36343,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19060,7 +36379,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C24", "location identifier": "C24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19079,7 +36402,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19093,6 +36422,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19101,7 +36458,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D1", "location identifier": "D1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19120,7 +36481,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19134,6 +36501,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19142,7 +36537,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D2", "location identifier": "D2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19161,7 +36560,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19175,6 +36580,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19183,7 +36616,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D3", "location identifier": "D3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19202,7 +36639,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19216,6 +36659,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19224,7 +36695,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D4", "location identifier": "D4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19243,7 +36718,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19257,6 +36738,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19265,7 +36774,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D5", "location identifier": "D5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19284,7 +36797,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19298,6 +36817,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19306,7 +36853,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D6", "location identifier": "D6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19325,7 +36876,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19339,6 +36896,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19347,7 +36932,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D7", "location identifier": "D7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19366,7 +36955,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19380,6 +36975,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19388,7 +37011,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D8", "location identifier": "D8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19407,7 +37034,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19421,6 +37054,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19429,7 +37090,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D9", "location identifier": "D9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19448,7 +37113,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19462,6 +37133,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19470,7 +37169,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D10", "location identifier": "D10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19489,7 +37192,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19503,6 +37212,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19511,7 +37248,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D11", "location identifier": "D11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19530,7 +37271,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19544,6 +37291,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19552,7 +37327,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D12", "location identifier": "D12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19571,7 +37350,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19585,6 +37370,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19593,7 +37406,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D13", "location identifier": "D13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19612,7 +37429,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19626,6 +37449,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19634,7 +37485,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D14", "location identifier": "D14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19653,7 +37508,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19667,6 +37528,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19675,7 +37564,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D15", "location identifier": "D15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19694,7 +37587,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19708,6 +37607,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19716,7 +37643,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D16", "location identifier": "D16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19735,7 +37666,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19749,6 +37686,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19757,7 +37722,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D17", "location identifier": "D17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19776,7 +37745,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19790,6 +37765,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19798,7 +37801,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D18", "location identifier": "D18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19817,7 +37824,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19831,6 +37844,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19839,7 +37880,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D19", "location identifier": "D19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19858,7 +37903,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19872,6 +37923,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19880,7 +37959,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D20", "location identifier": "D20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19899,7 +37982,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19913,6 +38002,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19921,7 +38038,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D21", "location identifier": "D21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19940,7 +38061,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19954,6 +38081,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -19962,7 +38117,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D22", "location identifier": "D22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -19981,7 +38140,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -19995,6 +38160,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20003,7 +38196,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D23", "location identifier": "D23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20022,7 +38219,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20036,6 +38239,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20044,7 +38275,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D24", "location identifier": "D24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20063,7 +38298,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20077,6 +38318,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20085,7 +38354,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E1", "location identifier": "E1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20104,7 +38377,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20118,6 +38397,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20126,7 +38433,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E2", "location identifier": "E2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20145,7 +38456,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20159,6 +38476,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20167,7 +38512,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E3", "location identifier": "E3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20186,7 +38535,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20200,6 +38555,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20208,7 +38591,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E4", "location identifier": "E4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20227,7 +38614,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20241,6 +38634,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20249,7 +38670,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E5", "location identifier": "E5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20268,7 +38693,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20282,6 +38713,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20290,7 +38749,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E6", "location identifier": "E6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20309,7 +38772,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20323,6 +38792,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20331,7 +38828,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E7", "location identifier": "E7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20350,7 +38851,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20364,6 +38871,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20372,7 +38907,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E8", "location identifier": "E8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20391,7 +38930,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20405,6 +38950,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20413,7 +38986,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E9", "location identifier": "E9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20432,7 +39009,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20446,6 +39029,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20454,7 +39065,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E10", "location identifier": "E10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20473,7 +39088,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20487,6 +39108,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20495,7 +39144,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E11", "location identifier": "E11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20514,7 +39167,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20528,6 +39187,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20536,7 +39223,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E12", "location identifier": "E12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20555,7 +39246,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20569,6 +39266,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20577,7 +39302,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E13", "location identifier": "E13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20596,7 +39325,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20610,6 +39345,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20618,7 +39381,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E14", "location identifier": "E14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20637,7 +39404,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20651,6 +39424,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20659,7 +39460,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E15", "location identifier": "E15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20678,7 +39483,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20692,6 +39503,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20700,7 +39539,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E16", "location identifier": "E16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20719,7 +39562,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20733,6 +39582,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20741,7 +39618,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E17", "location identifier": "E17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20760,7 +39641,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20774,6 +39661,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20782,7 +39697,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E18", "location identifier": "E18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20801,7 +39720,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20815,6 +39740,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20823,7 +39776,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E19", "location identifier": "E19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20842,7 +39799,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20856,6 +39819,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20864,7 +39855,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E20", "location identifier": "E20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20883,7 +39878,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20897,6 +39898,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20905,7 +39934,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E21", "location identifier": "E21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20924,7 +39957,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20938,6 +39977,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20946,7 +40013,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E22", "location identifier": "E22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -20965,7 +40036,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -20979,6 +40056,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -20987,7 +40092,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E23", "location identifier": "E23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21006,7 +40115,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21020,6 +40135,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21028,7 +40171,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E24", "location identifier": "E24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21047,7 +40194,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21061,6 +40214,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21069,7 +40250,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F1", "location identifier": "F1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21088,7 +40273,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21102,6 +40293,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21110,7 +40329,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F2", "location identifier": "F2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21129,7 +40352,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21143,6 +40372,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21151,7 +40408,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F3", "location identifier": "F3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21170,7 +40431,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21184,6 +40451,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21192,7 +40487,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F4", "location identifier": "F4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21211,7 +40510,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21225,6 +40530,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21233,7 +40566,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F5", "location identifier": "F5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21252,7 +40589,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21266,6 +40609,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21274,7 +40645,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F6", "location identifier": "F6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21293,7 +40668,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21307,6 +40688,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21315,7 +40724,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F7", "location identifier": "F7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21334,7 +40747,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21348,6 +40767,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21356,7 +40803,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F8", "location identifier": "F8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21375,7 +40826,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21389,6 +40846,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21397,7 +40882,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F9", "location identifier": "F9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21416,7 +40905,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21430,6 +40925,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21438,7 +40961,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F10", "location identifier": "F10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21457,7 +40984,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21471,6 +41004,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21479,7 +41040,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F11", "location identifier": "F11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21498,7 +41063,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21512,6 +41083,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21520,7 +41119,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F12", "location identifier": "F12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21539,7 +41142,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21553,6 +41162,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21561,7 +41198,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F13", "location identifier": "F13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21580,7 +41221,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21594,6 +41241,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21602,7 +41277,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F14", "location identifier": "F14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21621,7 +41300,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21635,6 +41320,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21643,7 +41356,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F15", "location identifier": "F15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21662,7 +41379,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21676,6 +41399,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21684,7 +41435,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F16", "location identifier": "F16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21703,7 +41458,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21717,6 +41478,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21725,7 +41514,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F17", "location identifier": "F17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21744,7 +41537,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21758,6 +41557,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21766,7 +41593,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F18", "location identifier": "F18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21785,7 +41616,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21799,6 +41636,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21807,7 +41672,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F19", "location identifier": "F19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21826,7 +41695,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21840,6 +41715,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21848,7 +41751,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F20", "location identifier": "F20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21867,7 +41774,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21881,6 +41794,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21889,7 +41830,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F21", "location identifier": "F21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21908,7 +41853,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21922,6 +41873,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21930,7 +41909,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F22", "location identifier": "F22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21949,7 +41932,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -21963,6 +41952,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -21971,7 +41988,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F23", "location identifier": "F23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -21990,7 +42011,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22004,6 +42031,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22012,7 +42067,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F24", "location identifier": "F24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22031,7 +42090,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22045,6 +42110,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22053,7 +42146,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G1", "location identifier": "G1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22072,7 +42169,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22086,6 +42189,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22094,7 +42225,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G2", "location identifier": "G2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22113,7 +42248,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22127,6 +42268,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22135,7 +42304,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G3", "location identifier": "G3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22154,7 +42327,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22168,6 +42347,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22176,7 +42383,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G4", "location identifier": "G4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22195,7 +42406,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22209,6 +42426,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22217,7 +42462,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G5", "location identifier": "G5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22236,7 +42485,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22250,6 +42505,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22258,7 +42541,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G6", "location identifier": "G6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22277,7 +42564,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22291,6 +42584,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22299,7 +42620,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G7", "location identifier": "G7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22318,7 +42643,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22332,6 +42663,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22340,7 +42699,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G8", "location identifier": "G8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22359,7 +42722,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22373,6 +42742,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22381,7 +42778,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G9", "location identifier": "G9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22400,7 +42801,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22414,6 +42821,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22422,7 +42857,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G10", "location identifier": "G10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22441,7 +42880,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22455,6 +42900,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22463,7 +42936,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G11", "location identifier": "G11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22482,7 +42959,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22496,6 +42979,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22504,7 +43015,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G12", "location identifier": "G12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22523,7 +43038,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22537,6 +43058,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22545,7 +43094,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G13", "location identifier": "G13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22564,7 +43117,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22578,6 +43137,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22586,7 +43173,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G14", "location identifier": "G14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22605,7 +43196,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22619,6 +43216,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22627,7 +43252,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G15", "location identifier": "G15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22646,7 +43275,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22660,6 +43295,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22668,7 +43331,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G16", "location identifier": "G16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22687,7 +43354,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22701,6 +43374,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22709,7 +43410,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G17", "location identifier": "G17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22728,7 +43433,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22742,6 +43453,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22750,7 +43489,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G18", "location identifier": "G18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22769,7 +43512,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22783,6 +43532,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22791,7 +43568,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G19", "location identifier": "G19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22810,7 +43591,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22824,6 +43611,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22832,7 +43647,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G20", "location identifier": "G20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22851,7 +43670,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22865,6 +43690,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22873,7 +43726,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G21", "location identifier": "G21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22892,7 +43749,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22906,6 +43769,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22914,7 +43805,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G22", "location identifier": "G22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22933,7 +43828,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22947,6 +43848,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22955,7 +43884,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G23", "location identifier": "G23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -22974,7 +43907,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -22988,6 +43927,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -22996,7 +43963,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G24", "location identifier": "G24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23015,7 +43986,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23029,6 +44006,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23037,7 +44042,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H1", "location identifier": "H1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23056,7 +44065,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23070,6 +44085,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23078,7 +44121,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H2", "location identifier": "H2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23097,7 +44144,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23111,6 +44164,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23119,7 +44200,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H3", "location identifier": "H3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23138,7 +44223,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23152,6 +44243,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23160,7 +44279,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H4", "location identifier": "H4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23179,7 +44302,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23193,6 +44322,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23201,7 +44358,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H5", "location identifier": "H5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23220,7 +44381,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23234,6 +44401,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23242,7 +44437,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H6", "location identifier": "H6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23261,7 +44460,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23275,6 +44480,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23283,7 +44516,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H7", "location identifier": "H7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23302,7 +44539,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23316,6 +44559,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23324,7 +44595,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H8", "location identifier": "H8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23343,7 +44618,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23357,6 +44638,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23365,7 +44674,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H9", "location identifier": "H9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23384,7 +44697,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23398,6 +44717,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23406,7 +44753,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H10", "location identifier": "H10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23425,7 +44776,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23439,6 +44796,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23447,7 +44832,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H11", "location identifier": "H11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23466,7 +44855,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23480,6 +44875,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23488,7 +44911,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H12", "location identifier": "H12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23507,7 +44934,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23521,6 +44954,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23529,7 +44990,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H13", "location identifier": "H13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23548,7 +45013,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23562,6 +45033,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23570,7 +45069,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H14", "location identifier": "H14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23589,7 +45092,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23603,6 +45112,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23611,7 +45148,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H15", "location identifier": "H15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23630,7 +45171,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23644,6 +45191,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23652,7 +45227,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H16", "location identifier": "H16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23671,7 +45250,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23685,6 +45270,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23693,7 +45306,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H17", "location identifier": "H17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23712,7 +45329,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23726,6 +45349,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23734,7 +45385,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H18", "location identifier": "H18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23753,7 +45408,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23767,6 +45428,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23775,7 +45464,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H19", "location identifier": "H19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23794,7 +45487,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23808,6 +45507,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23816,7 +45543,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H20", "location identifier": "H20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23835,7 +45566,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23849,6 +45586,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23857,7 +45622,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H21", "location identifier": "H21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23876,7 +45645,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23890,6 +45665,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23898,7 +45701,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H22", "location identifier": "H22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23917,7 +45724,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23931,6 +45744,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23939,7 +45780,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H23", "location identifier": "H23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23958,7 +45803,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -23972,6 +45823,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -23980,7 +45859,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H24", "location identifier": "H24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -23999,7 +45882,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24013,6 +45902,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24021,7 +45938,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I1", "location identifier": "I1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24040,7 +45961,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24054,6 +45981,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24062,7 +46017,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I2", "location identifier": "I2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24081,7 +46040,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24095,6 +46060,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24103,7 +46096,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I3", "location identifier": "I3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24122,7 +46119,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24136,6 +46139,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24144,7 +46175,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I4", "location identifier": "I4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24163,7 +46198,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24177,6 +46218,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24185,7 +46254,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I5", "location identifier": "I5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24204,7 +46277,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24218,6 +46297,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24226,7 +46333,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I6", "location identifier": "I6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24245,7 +46356,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24259,6 +46376,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24267,7 +46412,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I7", "location identifier": "I7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24286,7 +46435,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24300,6 +46455,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24308,7 +46491,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I8", "location identifier": "I8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24327,7 +46514,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24341,6 +46534,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24349,7 +46570,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I9", "location identifier": "I9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24368,7 +46593,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24382,6 +46613,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24390,7 +46649,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I10", "location identifier": "I10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24409,7 +46672,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24423,6 +46692,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24431,7 +46728,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I11", "location identifier": "I11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24450,7 +46751,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24464,6 +46771,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24472,7 +46807,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I12", "location identifier": "I12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24491,7 +46830,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24505,6 +46850,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24513,7 +46886,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I13", "location identifier": "I13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24532,7 +46909,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24546,6 +46929,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24554,7 +46965,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I14", "location identifier": "I14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24573,7 +46988,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24587,6 +47008,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24595,7 +47044,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I15", "location identifier": "I15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24614,7 +47067,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24628,6 +47087,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24636,7 +47123,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I16", "location identifier": "I16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24655,7 +47146,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24669,6 +47166,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24677,7 +47202,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I17", "location identifier": "I17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24696,7 +47225,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24710,6 +47245,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24718,7 +47281,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I18", "location identifier": "I18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24737,7 +47304,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24751,6 +47324,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24759,7 +47360,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I19", "location identifier": "I19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24778,7 +47383,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24792,6 +47403,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24800,7 +47439,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I20", "location identifier": "I20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24819,7 +47462,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24833,6 +47482,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24841,7 +47518,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I21", "location identifier": "I21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24860,7 +47541,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24874,6 +47561,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24882,7 +47597,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I22", "location identifier": "I22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24901,7 +47620,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24915,6 +47640,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24923,7 +47676,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I23", "location identifier": "I23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24942,7 +47699,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24956,6 +47719,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -24964,7 +47755,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I24", "location identifier": "I24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -24983,7 +47778,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -24997,6 +47798,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25005,7 +47834,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J1", "location identifier": "J1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25024,7 +47857,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25038,6 +47877,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25046,7 +47913,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J2", "location identifier": "J2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25065,7 +47936,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25079,6 +47956,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25087,7 +47992,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J3", "location identifier": "J3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25106,7 +48015,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25120,6 +48035,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25128,7 +48071,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J4", "location identifier": "J4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25147,7 +48094,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25161,6 +48114,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25169,7 +48150,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J5", "location identifier": "J5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25188,7 +48173,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25202,6 +48193,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25210,7 +48229,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J6", "location identifier": "J6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25229,7 +48252,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25243,6 +48272,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25251,7 +48308,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J7", "location identifier": "J7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25270,7 +48331,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25284,6 +48351,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25292,7 +48387,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J8", "location identifier": "J8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25311,7 +48410,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25325,6 +48430,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25333,7 +48466,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J9", "location identifier": "J9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25352,7 +48489,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25366,6 +48509,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25374,7 +48545,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J10", "location identifier": "J10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25393,7 +48568,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25407,6 +48588,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25415,7 +48624,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J11", "location identifier": "J11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25434,7 +48647,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25448,6 +48667,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25456,7 +48703,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J12", "location identifier": "J12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25475,7 +48726,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25489,6 +48746,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25497,7 +48782,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J13", "location identifier": "J13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25516,7 +48805,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25530,6 +48825,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25538,7 +48861,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J14", "location identifier": "J14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25557,7 +48884,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25571,6 +48904,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25579,7 +48940,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J15", "location identifier": "J15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25598,7 +48963,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25612,6 +48983,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25620,7 +49019,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J16", "location identifier": "J16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25639,7 +49042,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25653,6 +49062,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25661,7 +49098,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J17", "location identifier": "J17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25680,7 +49121,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25694,6 +49141,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25702,7 +49177,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J18", "location identifier": "J18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25721,7 +49200,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25735,6 +49220,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25743,7 +49256,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J19", "location identifier": "J19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25762,7 +49279,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25776,6 +49299,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25784,7 +49335,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J20", "location identifier": "J20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25803,7 +49358,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25817,6 +49378,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25825,7 +49414,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J21", "location identifier": "J21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25844,7 +49437,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25858,6 +49457,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25866,7 +49493,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J22", "location identifier": "J22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25885,7 +49516,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25899,6 +49536,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25907,7 +49572,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J23", "location identifier": "J23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25926,7 +49595,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25940,6 +49615,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25948,7 +49651,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J24", "location identifier": "J24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -25967,7 +49674,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -25981,6 +49694,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -25989,7 +49730,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K1", "location identifier": "K1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26008,7 +49753,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26022,6 +49773,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26030,7 +49809,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K2", "location identifier": "K2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26049,7 +49832,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26063,6 +49852,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26071,7 +49888,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K3", "location identifier": "K3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26090,7 +49911,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26104,6 +49931,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26112,7 +49967,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K4", "location identifier": "K4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26131,7 +49990,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26145,6 +50010,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26153,7 +50046,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K5", "location identifier": "K5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26172,7 +50069,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26186,6 +50089,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26194,7 +50125,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K6", "location identifier": "K6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26213,7 +50148,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26227,6 +50168,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26235,7 +50204,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K7", "location identifier": "K7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26254,7 +50227,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26268,6 +50247,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26276,7 +50283,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K8", "location identifier": "K8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26295,7 +50306,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26309,6 +50326,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26317,7 +50362,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K9", "location identifier": "K9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26336,7 +50385,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26350,6 +50405,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26358,7 +50441,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K10", "location identifier": "K10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26377,7 +50464,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26391,6 +50484,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26399,7 +50520,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K11", "location identifier": "K11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26418,7 +50543,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26432,6 +50563,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26440,7 +50599,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K12", "location identifier": "K12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26459,7 +50622,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26473,6 +50642,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26481,7 +50678,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K13", "location identifier": "K13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26500,7 +50701,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26514,6 +50721,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26522,7 +50757,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K14", "location identifier": "K14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26541,7 +50780,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26555,6 +50800,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26563,7 +50836,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K15", "location identifier": "K15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26582,7 +50859,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26596,6 +50879,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26604,7 +50915,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K16", "location identifier": "K16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26623,7 +50938,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26637,6 +50958,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26645,7 +50994,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K17", "location identifier": "K17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26664,7 +51017,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26678,6 +51037,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26686,7 +51073,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K18", "location identifier": "K18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26705,7 +51096,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26719,6 +51116,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26727,7 +51152,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K19", "location identifier": "K19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26746,7 +51175,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26760,6 +51195,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26768,7 +51231,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K20", "location identifier": "K20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26787,7 +51254,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26801,6 +51274,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26809,7 +51310,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K21", "location identifier": "K21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26828,7 +51333,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26842,6 +51353,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26850,7 +51389,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K22", "location identifier": "K22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26869,7 +51412,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26883,6 +51432,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26891,7 +51468,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K23", "location identifier": "K23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26910,7 +51491,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26924,6 +51511,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26932,7 +51547,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K24", "location identifier": "K24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26951,7 +51570,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -26965,6 +51590,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -26973,7 +51626,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L1", "location identifier": "L1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -26992,7 +51649,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27006,6 +51669,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27014,7 +51705,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L2", "location identifier": "L2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27033,7 +51728,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27047,6 +51748,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27055,7 +51784,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L3", "location identifier": "L3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27074,7 +51807,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27088,6 +51827,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27096,7 +51863,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L4", "location identifier": "L4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27115,7 +51886,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27129,6 +51906,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27137,7 +51942,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L5", "location identifier": "L5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27156,7 +51965,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27170,6 +51985,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27178,7 +52021,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L6", "location identifier": "L6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27197,7 +52044,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27211,6 +52064,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27219,7 +52100,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L7", "location identifier": "L7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27238,7 +52123,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27252,6 +52143,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27260,7 +52179,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L8", "location identifier": "L8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27279,7 +52202,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27293,6 +52222,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27301,7 +52258,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L9", "location identifier": "L9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27320,7 +52281,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27334,6 +52301,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27342,7 +52337,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L10", "location identifier": "L10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27361,7 +52360,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27375,6 +52380,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27383,7 +52416,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L11", "location identifier": "L11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27402,7 +52439,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27416,6 +52459,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27424,7 +52495,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L12", "location identifier": "L12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27443,7 +52518,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27457,6 +52538,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27465,7 +52574,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L13", "location identifier": "L13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27484,7 +52597,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27498,6 +52617,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27506,7 +52653,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L14", "location identifier": "L14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27525,7 +52676,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27539,6 +52696,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27547,7 +52732,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L15", "location identifier": "L15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27566,7 +52755,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27580,6 +52775,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27588,7 +52811,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L16", "location identifier": "L16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27607,7 +52834,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27621,6 +52854,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27629,7 +52890,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L17", "location identifier": "L17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27648,7 +52913,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27662,6 +52933,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27670,7 +52969,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L18", "location identifier": "L18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27689,7 +52992,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27703,6 +53012,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27711,7 +53048,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L19", "location identifier": "L19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27730,7 +53071,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27744,6 +53091,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27752,7 +53127,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L20", "location identifier": "L20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27771,7 +53150,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27785,6 +53170,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27793,7 +53206,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L21", "location identifier": "L21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27812,7 +53229,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27826,6 +53249,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27834,7 +53285,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L22", "location identifier": "L22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27853,7 +53308,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27867,6 +53328,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27875,7 +53364,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L23", "location identifier": "L23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27894,7 +53387,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27908,6 +53407,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27916,7 +53443,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L24", "location identifier": "L24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27935,7 +53466,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27949,6 +53486,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27957,7 +53522,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M1", "location identifier": "M1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -27976,7 +53545,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -27990,6 +53565,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -27998,7 +53601,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M2", "location identifier": "M2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28017,7 +53624,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28031,6 +53644,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28039,7 +53680,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M3", "location identifier": "M3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28058,7 +53703,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28072,6 +53723,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28080,7 +53759,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M4", "location identifier": "M4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28099,7 +53782,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28113,6 +53802,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28121,7 +53838,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M5", "location identifier": "M5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28140,7 +53861,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28154,6 +53881,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28162,7 +53917,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M6", "location identifier": "M6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28181,7 +53940,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28195,6 +53960,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28203,7 +53996,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M7", "location identifier": "M7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28222,7 +54019,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28236,6 +54039,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28244,7 +54075,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M8", "location identifier": "M8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28263,7 +54098,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28277,6 +54118,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28285,7 +54154,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M9", "location identifier": "M9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28304,7 +54177,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28318,6 +54197,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28326,7 +54233,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M10", "location identifier": "M10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28345,7 +54256,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28359,6 +54276,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28367,7 +54312,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M11", "location identifier": "M11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28386,7 +54335,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28400,6 +54355,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28408,7 +54391,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M12", "location identifier": "M12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28427,7 +54414,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28441,6 +54434,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28449,7 +54470,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M13", "location identifier": "M13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28468,7 +54493,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28482,6 +54513,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28490,7 +54549,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M14", "location identifier": "M14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28509,7 +54572,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28523,6 +54592,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28531,7 +54628,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M15", "location identifier": "M15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28550,7 +54651,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28564,6 +54671,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28572,7 +54707,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M16", "location identifier": "M16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28591,7 +54730,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28605,6 +54750,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28613,7 +54786,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M17", "location identifier": "M17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28632,7 +54809,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28646,6 +54829,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28654,7 +54865,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M18", "location identifier": "M18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28673,7 +54888,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28687,6 +54908,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28695,7 +54944,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M19", "location identifier": "M19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28714,7 +54967,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28728,6 +54987,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28736,7 +55023,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M20", "location identifier": "M20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28755,7 +55046,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28769,6 +55066,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28777,7 +55102,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M21", "location identifier": "M21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28796,7 +55125,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28810,6 +55145,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28818,7 +55181,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M22", "location identifier": "M22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28837,7 +55204,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28851,6 +55224,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28859,7 +55260,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M23", "location identifier": "M23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28878,7 +55283,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28892,6 +55303,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28900,7 +55339,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M24", "location identifier": "M24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28919,7 +55362,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28933,6 +55382,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28941,7 +55418,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N1", "location identifier": "N1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -28960,7 +55441,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -28974,6 +55461,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -28982,7 +55497,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N2", "location identifier": "N2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29001,7 +55520,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29015,6 +55540,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29023,7 +55576,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N3", "location identifier": "N3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29042,7 +55599,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29056,6 +55619,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29064,7 +55655,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N4", "location identifier": "N4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29083,7 +55678,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29097,6 +55698,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29105,7 +55734,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N5", "location identifier": "N5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29124,7 +55757,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29138,6 +55777,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29146,7 +55813,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N6", "location identifier": "N6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29165,7 +55836,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29179,6 +55856,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29187,7 +55892,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N7", "location identifier": "N7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29206,7 +55915,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29220,6 +55935,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29228,7 +55971,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N8", "location identifier": "N8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29247,7 +55994,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29261,6 +56014,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29269,7 +56050,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N9", "location identifier": "N9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29288,7 +56073,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29302,6 +56093,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29310,7 +56129,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N10", "location identifier": "N10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29329,7 +56152,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29343,6 +56172,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29351,7 +56208,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N11", "location identifier": "N11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29370,7 +56231,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29384,6 +56251,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29392,7 +56287,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N12", "location identifier": "N12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29411,7 +56310,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29425,6 +56330,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29433,7 +56366,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N13", "location identifier": "N13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29452,7 +56389,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29466,6 +56409,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29474,7 +56445,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N14", "location identifier": "N14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29493,7 +56468,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29507,6 +56488,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29515,7 +56524,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N15", "location identifier": "N15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29534,7 +56547,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29548,6 +56567,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29556,7 +56603,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N16", "location identifier": "N16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29575,7 +56626,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29589,6 +56646,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29597,7 +56682,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N17", "location identifier": "N17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29616,7 +56705,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29630,6 +56725,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29638,7 +56761,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N18", "location identifier": "N18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29657,7 +56784,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29671,6 +56804,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29679,7 +56840,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N19", "location identifier": "N19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29698,7 +56863,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29712,6 +56883,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29720,7 +56919,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N20", "location identifier": "N20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29739,7 +56942,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29753,6 +56962,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29761,7 +56998,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N21", "location identifier": "N21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29780,7 +57021,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29794,6 +57041,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29802,7 +57077,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N22", "location identifier": "N22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29821,7 +57100,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29835,6 +57120,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29843,7 +57156,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N23", "location identifier": "N23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29862,7 +57179,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29876,6 +57199,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29884,7 +57235,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N24", "location identifier": "N24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29903,7 +57258,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29917,6 +57278,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29925,7 +57314,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O1", "location identifier": "O1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29944,7 +57337,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29958,6 +57357,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -29966,7 +57393,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O2", "location identifier": "O2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -29985,7 +57416,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -29999,6 +57436,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30007,7 +57472,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O3", "location identifier": "O3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30026,7 +57495,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30040,6 +57515,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30048,7 +57551,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O4", "location identifier": "O4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30067,7 +57574,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30081,6 +57594,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30089,7 +57630,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O5", "location identifier": "O5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30108,7 +57653,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30122,6 +57673,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30130,7 +57709,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O6", "location identifier": "O6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30149,7 +57732,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30163,6 +57752,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30171,7 +57788,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O7", "location identifier": "O7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30190,7 +57811,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30204,6 +57831,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30212,7 +57867,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O8", "location identifier": "O8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30231,7 +57890,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30245,6 +57910,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30253,7 +57946,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O9", "location identifier": "O9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30272,7 +57969,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30286,6 +57989,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30294,7 +58025,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O10", "location identifier": "O10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30313,7 +58048,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30327,6 +58068,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30335,7 +58104,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O11", "location identifier": "O11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30354,7 +58127,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30368,6 +58147,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30376,7 +58183,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O12", "location identifier": "O12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30395,7 +58206,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30409,6 +58226,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30417,7 +58262,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O13", "location identifier": "O13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30436,7 +58285,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30450,6 +58305,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30458,7 +58341,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O14", "location identifier": "O14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30477,7 +58364,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30491,6 +58384,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30499,7 +58420,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O15", "location identifier": "O15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30518,7 +58443,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30532,6 +58463,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30540,7 +58499,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O16", "location identifier": "O16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30559,7 +58522,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30573,6 +58542,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30581,7 +58578,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O17", "location identifier": "O17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30600,7 +58601,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30614,6 +58621,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30622,7 +58657,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O18", "location identifier": "O18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30641,7 +58680,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30655,6 +58700,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30663,7 +58736,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O19", "location identifier": "O19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30682,7 +58759,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30696,6 +58779,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30704,7 +58815,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O20", "location identifier": "O20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30723,7 +58838,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30737,6 +58858,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30745,7 +58894,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O21", "location identifier": "O21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30764,7 +58917,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30778,6 +58937,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30786,7 +58973,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O22", "location identifier": "O22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30805,7 +58996,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30819,6 +59016,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30827,7 +59052,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O23", "location identifier": "O23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30846,7 +59075,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30860,6 +59095,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30868,7 +59131,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O24", "location identifier": "O24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30887,7 +59154,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30901,6 +59174,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30909,7 +59210,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P1", "location identifier": "P1", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30928,7 +59233,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30942,6 +59253,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30950,7 +59289,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P2", "location identifier": "P2", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -30969,7 +59312,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -30983,6 +59332,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -30991,7 +59368,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P3", "location identifier": "P3", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31010,7 +59391,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31024,6 +59411,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31032,7 +59447,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P4", "location identifier": "P4", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31051,7 +59470,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31065,6 +59490,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31073,7 +59526,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P5", "location identifier": "P5", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31092,7 +59549,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31106,6 +59569,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31114,7 +59605,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P6", "location identifier": "P6", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31133,7 +59628,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31147,6 +59648,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31155,7 +59684,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P7", "location identifier": "P7", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31174,7 +59707,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31188,6 +59727,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31196,7 +59763,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P8", "location identifier": "P8", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31215,7 +59786,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31229,6 +59806,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31237,7 +59842,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P9", "location identifier": "P9", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31256,7 +59865,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31270,6 +59885,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31278,7 +59921,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P10", "location identifier": "P10", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31297,7 +59944,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31311,6 +59964,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31319,7 +60000,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P11", "location identifier": "P11", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31338,7 +60023,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31352,6 +60043,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31360,7 +60079,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P12", "location identifier": "P12", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31379,7 +60102,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31393,6 +60122,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31401,7 +60158,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P13", "location identifier": "P13", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31420,7 +60181,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31434,6 +60201,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31442,7 +60237,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P14", "location identifier": "P14", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31461,7 +60260,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31475,6 +60280,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31483,7 +60316,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P15", "location identifier": "P15", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31502,7 +60339,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31516,6 +60359,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31524,7 +60395,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P16", "location identifier": "P16", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31543,7 +60418,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31557,6 +60438,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31565,7 +60474,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P17", "location identifier": "P17", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31584,7 +60497,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31598,6 +60517,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31606,7 +60553,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P18", "location identifier": "P18", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31625,7 +60576,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31639,6 +60596,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31647,7 +60632,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P19", "location identifier": "P19", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31666,7 +60655,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31680,6 +60675,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31688,7 +60711,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P20", "location identifier": "P20", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31707,7 +60734,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31721,6 +60754,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31729,7 +60790,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P21", "location identifier": "P21", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31748,7 +60813,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31762,6 +60833,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31770,7 +60869,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P22", "location identifier": "P22", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31789,7 +60892,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31803,6 +60912,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31811,7 +60948,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P23", "location identifier": "P23", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31830,7 +60971,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } }, { @@ -31844,6 +60991,34 @@ "detector distance setting (plate reader)": { "value": 14.67, "unit": "mm" + }, + "custom information document": { + "Ambient temperature at start": { + "value": 24.07, + "unit": "degC" + }, + "Ambient temperature at end": { + "value": 24.36, + "unit": "degC" + }, + "Chamber temperature at end": { + "value": 23.85, + "unit": "degC" + }, + "Humidity at start": { + "value": 47.2, + "unit": "%" + }, + "Humidity at end": { + "value": 45.1, + "unit": "%" + }, + "Kinetics": 0.0, + "ScanX": 0.0, + "ScanY": 0.0, + "Height of the plate": "14.35 mm", + "Number of rows": 16.0, + "Number of columns": 24.0 } } ] @@ -31852,7 +61027,11 @@ "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P24", "location identifier": "P24", - "well plate identifier": "8/22/2023 12:16:57 PM" + "well plate identifier": "8/22/2023 12:16:57 PM", + "custom information document": { + "group identifier": 1.0, + "Repeat": 1.0 + } }, "compartment temperature": { "value": 23.66, @@ -31871,7 +61050,13 @@ }, "analytical method identifier": "100176", "experimental data identifier": "2900", - "container type": "well plate" + "container type": "well plate", + "custom information document": { + "Protocol Name": "DL LUM test", + "Assay Exported": "8/22/2023 12:18:26 PM", + "Assay Finished": "8/22/2023 12:18:26 PM", + "Assay Started": "8/22/2023 12:15:09 PM" + } } } ], @@ -44941,7 +74126,7 @@ "file name": "PE_Envision_missing_plate_maps.csv", "UNC path": "tests/parsers/perkin_elmer_envision/testdata/PE_Envision_missing_plate_maps.csv", "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.83", + "ASM converter version": "0.1.105", "software name": "EnVision Workstation", "software version": "1.14.3049.1193" },